Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

please help me:i cant figure out how to find a single player model in a server script?

Asked by 4 years ago

hi help me pls i cant figure out how to find a single player model in a server script

local script

01-- set variables
02local staff = script.Parent-- find the staff itself
03local output = staff:FindFirstChild("Energizer")-- where the output will start
04local player = game:GetService("Players").LocalPlayer-- getting the player and the humanoid
05local character
06repeat
07    character = player.Character
08    wait()
09until character
10local hum = character:WaitForChild("Humanoid")
11local repstorage = game.ReplicatedStorage
12 
13 
14-- set events and functions
15local equipR6 = repstorage.equipR6
View all 31 lines...

server script

01local player = nil
02local hum = nil
03local repstorage = game.ReplicatedStorage--set the replicated storage variable
04 
05--set the remote events and functions
06local equipR15 = repstorage:WaitForChild("equipR15")
07local equipR6 = repstorage:WaitForChild("equipR6")
08 
09 
10--play the animations
11function playEquipAnimR6(player)
12    if game.Workspace[player.Name]:FindFirstChild("Torso") then--if the avatar type is R6
13        local equipR6 = Instance.new("Animation")--makes animation instance
14        equipR6.AnimationId = "rbxassetid://4967132516"
15        local equipAnimTrackR6 = hum:LoadAnimation(equipR6)--Use name
View all 30 lines...

Answer this question