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

How do I make player do a default dance?

Asked by 6 years ago
Edited 6 years ago

I am trying to make the local player do a default dance, and it worked (mostly) , but either sometimes it wouldn't work, or it would only work for a couple seconds, so I added a loop, but that does not work either, because it is too fast of a loop and I do not know the exact time to do. Can anybody help me with this, I've already looked for this type of stuff but there is nothing to answer my question.

Server Script:

1replicatedStorage = game:GetService("ReplicatedStorage")
2replicatedStorage.RE.Dance3.dance3:FireClient(plr,true)

LocalScript:

01function dance3(operation)
02    if operation == true then
03        local name = game.Players.LocalPlayer.Name
04        local Humanoid = game.Workspace:WaitForChild(name).Humanoid
05        local animation = Instance.new("Animation")
06        animation.AnimationId = "http://www.roblox.com/asset/?id=182436935"
07        game.ReplicatedStorage.RE.Dance3.Value.Value = true
08        local animTrack = Humanoid:LoadAnimation(animation)
09        while game.ReplicatedStorage.RE.Dance3.Value.Value == true do
10            wait()
11            animTrack:Play()
12        end
13    elseif operation == false then
14        game.ReplicatedStorage.RE.Dance3.Value.Value = false
15    end
16end
17game.ReplicatedStorage.RE.Dance3.dance3.OnClientEvent:Connect(dance3)
1
put: animTrack.Looped = true yHasteeD 1819 — 6y
0
dont use instance.new and animations i find that to not work sometimes Clasterboy 72 — 6y

1 answer

Log in to vote
0
Answered by
Lucke0051 165
6 years ago

I think your problem might be that the animation’s priority is too low, consider changing it to Action. Do that in the animation editor.

Ad

Answer this question