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:
1 | replicatedStorage = game:GetService( "ReplicatedStorage" ) |
2 | replicatedStorage.RE.Dance 3. dance 3 :FireClient(plr, true ) |
LocalScript:
01 | function dance 3 (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" ) |
07 | game.ReplicatedStorage.RE.Dance 3. Value.Value = true |
08 | local animTrack = Humanoid:LoadAnimation(animation) |
09 | while game.ReplicatedStorage.RE.Dance 3. Value.Value = = true do |
13 | elseif operation = = false then |
14 | game.ReplicatedStorage.RE.Dance 3. Value.Value = false |
17 | game.ReplicatedStorage.RE.Dance 3. dance 3. OnClientEvent:Connect(dance 3 ) |