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

How can I add specific r15 animations to every player who enters?

Asked by 5 years ago

Specifically the Ninja animation pack.

1
It would help a lot if you posted the script you tried User#19524 175 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago

You could make a server script with a playerAdded function.

local players = game:GetService("Players")

players.PlayerAdded:connect(function(player)

end)

You would have it add the ninja animation pack to the player that was added in the function.

I hope this helps.

Ad

Answer this question