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

Position is not a valid member of Model "Workspace.CoolBBobbyBoy1025.Head"?

Asked by 2 years ago

local character = script.Parent local humanoid = character:WaitForChild("Humanoid")

local walkAnim = script.WaitForChild("Walk") local walkAnimTrack = humanoid.Animator:LoadAnimation(walkAnim)

humanoid.Running:Connect(function(speed) if speed > 0 then if not walkAnimTrack.IsPlaying then walkAnimTrack:Play() then else if walkAnimTrack.IsPlaying then walkAnimTrack:stop() end end end)

0
Wrong script? The program you provided doesn't have anything for the Head nor Position lmao. TheeDeathCaster 2368 — 2y

Answer this question