It doesn't work on game because you are trying to call the players torso before it loads into the game. In the studio it loads before the scripts. But in a real game the character takes longer to load. I suggest using this:
1 | repeat wait() until player.Character |
to make the script wait until the character has loaded in
this would pan out to
1 | local player = game.Players.LocalPlayer |
3 | repeat wait() until player.Character |
5 | local handle = player.Character.Torso |
if that doesnt work do
1 | local handle = player.Character:WaitForChild( "Torso" ) |