I just need help to figure out how to freeze an entire character. Then unfreeze. How can I make it work?
1 Like
you can just simply anchor their humanoidrootpart.
but then how am I going to get all players in the server?
just do this:
for i,v in pairs(game.Players:GetChildren()) do
v.Character.HumanoidRootPart.Anchored = true
end
1 Like
Welp that was easy. Thanks for the help.