I have this script that freezes the player (Anchors the player) but after the player is frozen, they have this freecam thing. So the HumanoidRootPart moves and is not frozen. And no, I DON'T want to set the WalkSpeed and JumpPower to 0
Code:
1 | for i,v in pairs (character) do |
2 | if v:IsA( "BasePart" ) then |
3 | v.Anchored = true |
4 | end |
5 | end |
Thanks!
If you don't want to change WalkSpeed, you can set PlatformStand
to true. It will prevent any movement at all.
01 | function Freeze(player, bool) |
02 | local char = player.Character |
03 | local hum = char:FindFirstChildOfClass( "Humanoid" ) |
04 | for i,v in pairs (char:GetChildren()) do |
05 | if v:IsA( "BasePart" ) then |
06 | v.Anchored = bool |
07 | end |
08 | end |
09 | hum.PlatformStand = bool |
10 | end |
11 |
12 | Freeze(game:GetService( "Players" ).LocalPlayer, true ) |
13 | wait( 2 ) |
14 | Freeze(game:GetService( "Players" ).LocalPlayer, false ) |
I had this problem earlier, the way I solved it was by using a client event to freeze the player locally. (use this with the script you are already using.)
01 | -- FREEZE |
02 | game.ReplicatedStorage.Remotes.TSW.On.OnClientEvent:connect( function () |
03 | Player.PlayerScripts.ControlScript.Disabled = true |
04 | if Player.Character.RigType = = 'R6' then |
05 | Player.Character.Torso.Anchored = true |
06 | elseif Player.Character.RigType = = 'R15' then |
07 | Player.Character.LowerTorso.Anchored = true |
08 | Player.Character.UpperTorso.Anchored = true |
09 | end |
10 | end ) |
11 |
12 | -- UNFREEZE |
13 | game.ReplicatedStorage.Remotes.TSW.Off.OnClientEvent:connect( function () |
14 | Player.PlayerScripts.ControlScript.Disabled = false |
15 | if Player.Character.RigType = = 'R6' then |
Simpler solution:
1 | local player = — your player here |
2 | local character = player.character |
3 | local humanoid = character.Humanoid |
4 |
5 | humanoid.WalkSpeed = 0 — default is 13 |
6 | humanoid.JumpPower = 0 — default depends |
You can set them back when needed :)