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