これらのワークをすべて一緒に収集しましょう!ビームとパーティクルコンポーネントを作成した後、3つのプリメイドスクリプトを追加します。これらのスクリプトは、ビームを新しいプレイヤーに作成し、ターゲットと対話するたびにパーティクルをエミットするように構成します。たとえば、ビームは新しいプレイヤーに作成し、ターゲットと対話するた
ビームとパーティクルを保存する
スクリプトを追加する前に、ビームとパーティクルは必要に応じてスクリプトのコピーを作成できる場所に移動する必要があります。
In ReplicatedStorage で、 PlayerTutorial という名前の新しいフォルダを作成します。TutorialBeam をテストプレイヤーから移動し、新しいフォルダに移動します。
In ServerStorage で、 TutorialParticles という名前のフォルダを作成します。TestPlayer から Burst パーティクルをそのフォルダに移動します。
ビームとパーティクルエミッターが移動したら、もう TestPlayer は必要ありません。 削除 TestPlayer は、スクリプトが完了したときに実際のプレイヤーと一緒に動作するようになります。
イベントの作成
プレイヤーがゴールとインタラクトするたびに、チュートリアルスクリプトはそのプレイヤーの進行状況を更新し、パーティクルエフェクトを発行することができます。スクリプトを更新するには、 イベント を使用してシグナルを送信できます。
In ReplicatedStorage > PlayerTutorial で、次の 2つの リモートイベント オブジェクトを作成します。それらに 次の目標 と チュートリアル終了 を名前付けします。
スクリプトの追加
以下の 3つのスクリプトは、以前に作成されたパーティクルエミッターとビームオブジェクトを検索し、チュートリアルシステムを管理します。
ReplicatedStorage > PlayerTutorial > 新しい ModuleScript を作成する TutorialManager の名前で。
コードのコピーと貼り付けは、デフォルトコードを置き換えます。
local TutorialManager = {}local ReplicatedStorage = game:GetService("ReplicatedStorage")local tutorialFolder = ReplicatedStorage:WaitForChild("PlayerTutorial")local TutorialEndEvent = tutorialFolder:WaitForChild("TutorialEnd")local NextGoalEvent = tutorialFolder:WaitForChild("NextGoal")-- ゴールのパーツはテーブルで注文する必要があります。そうしないと、ゴールのオーダーはゲーム内で異なる可能性がありますlocal goalParts = {workspace.TutorialGoals.GoalPart1,workspace.TutorialGoals.GoalPart2}local function checkTutorialEnd(player, goalParts)local currentIndex = player:WaitForChild("GoalProgress")return currentIndex.Value >= #goalPartsendlocal function finishTutorial(player)local playerBeam = player.Character.HumanoidRootPart:FindFirstChildOfClass("Beam")playerBeam:Destroy()print(player.Name .. " finished the tutorial")-- コードをさらに実行するためのプレースホルダー。たとえば、他のタスクを実行するためにサーバーにメッセージを送信したい場合endfunction TutorialManager.interactGoal(player)NextGoalEvent:FireServer()endfunction TutorialManager.getTutorialGoals()return goalPartsendfunction TutorialManager.nextGoal(player, goalParts)if checkTutorialEnd(player, goalParts) thenfinishTutorial(player)else-- プレイヤーのゴールトラッカーをインクリメントするlocal currentGoalIndex = player:WaitForChild("GoalProgress")currentGoalIndex.Value += 1endend-- チュートリアルゴールを通じて、プレイヤーの進行状況をローカルで追跡する整数の値を作成しますfunction TutorialManager.setupPlayerProgress(player)local currentGoalProgress = Instance.new("IntValue")currentGoalProgress.Name = "GoalProgress"currentGoalProgress.Value = 1currentGoalProgress.Parent = playerendreturn TutorialManagerこのスクリプトは、チュートリアルでプレイヤーの進行状況を管理するためのコードを実行します。これには、タスクを実行してゴールとインタラクトするためのコードを実行するなどのタスクが含まれます。
In ServerScriptService で、新しい スクリプト を作成し、 チュートリアルパーティクル という名前の新しい 1>スクリプト1> を作成します。
以下のコードを貼り付けます。
local Players = game:GetService("Players")local ReplicatedStorage = game:GetService("ReplicatedStorage")local ServerStorage = game:GetService("ServerStorage")local tutorialFolder = ReplicatedStorage:WaitForChild("PlayerTutorial")local NextGoalEvent = tutorialFolder:WaitForChild("NextGoal")local EMIT_RATE = 50local function playParticleBurst(player)local character = player.Character or player.CharacterAdded:Wait()local humanoidRootPart = character:WaitForChild("HumanoidRootPart")local particleAttachment = humanoidRootPart:WaitForChild("ParticleAttachment")-- アタッチメントのパーツを通過して、パーティクルの種類に従ってプレイしますfor _, particle in particleAttachment:GetChildren() doif particle:IsA("ParticleEmitter") thenparticle:Emit(EMIT_RATE)endendendlocal function setupPlayerParticles(player)player.CharacterAdded:Connect(function(character)local humanoidRootPart = character:WaitForChild("HumanoidRootPart")local playerParticleAttachment = Instance.new("Attachment")playerParticleAttachment.Name = "ParticleAttachment"playerParticleAttachment.Parent = humanoidRootPart-- フォルダ内のパーティクルをクローンし、1つ以上ある場合でもプレイヤーに付けるfor _, emitter in ServerStorage.TutorialParticles:GetChildren() doemitter:Clone().Parent = playerParticleAttachmentendend)endPlayers.PlayerAdded:Connect(setupPlayerParticles)NextGoalEvent.OnServerEvent:Connect(playParticleBurst)このスクリプトは、プレイヤーがゴールと対話するたびにバーストパーティクルを再生します。また、EMIT_RATE という変数があり、交流中にどれだけのバーストパーティクルが生成されるかを決定します。
In StarterPlayer > StarterPlayerScripts, 新しい ローカルスクリプト を作成します。名前は チュートリアルスクリプト です。
次に、以下のスクリプトを貼り付けます。このスクリプトは、プレイヤーを誘導するビームを作成および管理します。
local Players = game:GetService("Players")local ReplicatedStorage = game:GetService("ReplicatedStorage")local tutorialFolder = ReplicatedStorage:WaitForChild("PlayerTutorial")local TutorialManager = require(tutorialFolder:WaitForChild("TutorialManager"))local TutorialEndEvent = tutorialFolder:WaitForChild("TutorialEnd")local player = Players.LocalPlayerlocal goalParts = TutorialManager.getTutorialGoals()local playerBeam = nillocal goalIndex = nillocal function getTargetAttachment()local currentTarget = goalParts[goalIndex.Value]local interactionPart = currentTarget:FindFirstChild("InteractionPart")local attachment = interactionPart and interactionPart:FindFirstChildOfClass("Attachment")if not attachment thenattachment = Instance.new("Attachment")attachment.Name = "BeamAttachment"attachment.Parent = currentTargetendreturn attachmentendlocal function updateBeamTarget()playerBeam = player.Character.HumanoidRootPart:FindFirstChildOfClass("Beam")local targetBeamAttachment = getTargetAttachment()if targetBeamAttachment thenplayerBeam.Attachment1 = targetBeamAttachmentelsewarn("Attachment not found in a goal. Check that goals have attachments or they're included under the InteractionPart")endendlocal function setupGoals()for _, part in goalParts dolocal interactionPart = part:FindFirstChild("InteractionPart")local proximityPrompt = interactionPart and interactionPart:FindFirstChild("ProximityPrompt")if proximityPrompt thenproximityPrompt.Triggered:Connect(function(player)proximityPrompt.Enabled = falseTutorialManager.nextGoal(player, goalParts)TutorialManager.interactGoal(player)end)elsewarn("Proximity prompt not included in goal. Add one to each goal part under the InteractionPart")endendendlocal function createBeamForCharacter(character)local humanoidRootPart = character:WaitForChild("HumanoidRootPart")local playerBeamAttachment = Instance.new("Attachment")local beamTemplate = tutorialFolder:WaitForChild("TutorialBeam")if not beamTemplate thenwarn("Tutorial Beam not found in ReplicatedStorage")endplayerBeamAttachment.Name = "BeamAttachment"playerBeamAttachment.Parent = humanoidRootPartlocal targetBeamAttachment = getTargetAttachment()playerBeam = beamTemplate:Clone()playerBeam.Attachment0 = playerBeamAttachmentplayerBeam.Attachment1 = targetBeamAttachmentplayerBeam.Parent = humanoidRootPartplayerBeam.Enabled = trueendlocal function setupPlayer()setupGoals()TutorialManager.setupPlayerProgress(player)goalIndex = player:WaitForChild("GoalProgress")player.CharacterAdded:Connect(createBeamForCharacter)if player.Character thencreateBeamForCharacter(player.Character)endendsetupPlayer()goalIndex.Changed:Connect(updateBeamTarget)プロジェクトをプレイしてスクリプトをテストします。ブースからブースへ、インタラクト機能を使用してコードが機能しているかどうかを見ます。
トラブルシューティングのヒント
問題 : ゲームが開始するとパーティクルがプレイされます。
ServerStorage > Tutorial Particles > Burst に移動します。オフにすることを有効にします。 問題 : コンパイラーで「無限の生成」などの警告。
スクリプトは特定の場所で特定のオブジェクトを検索しているため、部品の名前が正しくありません。各パーツの名前と場所がチュートリアルと一致することを確認してください。
スクリプトの利点と制限
このチュートリアルシステムをエクスペリエンスで使用している場合は、フォロー中のことを意識してください: 利点
- TutorialEnd などのイベントは、他のスクリプトをトリガーすることができます。たとえば、このイベントが発動すると、プレイヤーに特別なアイテムを授与できます。
- チュートリアルパーティクルスクリプトは、複数のパーティクルを同時にプレイできます。サーバーストレージ/チュートリアルパーティクルに追加して、より複雑なエフェクトを追加できます。 制限
- チュートリアルでのプレイヤーの進行状況は持続しません。つまり、その進行状況を保存する方法をコードする必要があります。ガイドについては、記事を参照してください:データの保存。