this isnt a request, i just wanna know the properties which needs to get tcked off
You would do it like this:
1 | game.Players.Player 1. Character.Humanoid.WalkSpeed = 0 |
2 | game.Players. Player 1. Character. Humanoid.JumpPower = 0 |
3 |
4 | game.Players. Player 1. Character. Humanoid.AutoRotate |
5 | = false |
From this code, the properties you are looking for are WalkSpeed, AutoRotate, and JumpPower.
I would disable the players ControlScript.
1 | local Players = game:getService( "Players" ) |
2 | local Player = Players.LocalPlayer |
3 | local PlayerScripts = Player:WaitForChild( "PlayerScripts" ) |
4 | local ControlScript = PlayerScripts:WaitForChild( "ControlScript" ) |
5 | ControlScript.Disabled = true |
6 | --If you want to turn it off, just do |
7 | ControlScript.Disabled = false |