Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

My player freeze script does not work. What did I do wrong?

Asked by 7 years ago
Edited 7 years ago

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:

1for i,v in pairs(character) do
2    if v:IsA("BasePart") then
3        v.Anchored = true
4    end
5end

Thanks!

0
Is that code the full script? If not, could you please paste it so we can see if there are other errors? ax_gold 360 — 7y
0
you could try anchoring a part welded to the player's character. Le_Teapots 913 — 7y

3 answers

Log in to vote
2
Answered by
Amiaa16 3227 Moderation Voter Community Moderator
7 years ago

If you don't want to change WalkSpeed, you can set PlatformStand to true. It will prevent any movement at all.

01function 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
10end
11 
12Freeze(game:GetService("Players").LocalPlayer, true)
13wait(2)
14Freeze(game:GetService("Players").LocalPlayer, false)
Ad
Log in to vote
0
Answered by
CPF2 406 Moderation Voter
7 years ago

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
02game.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
10end)
11 
12-- UNFREEZE
13game.ReplicatedStorage.Remotes.TSW.Off.OnClientEvent:connect(function()
14    Player.PlayerScripts.ControlScript.Disabled = false
15    if Player.Character.RigType == 'R6' then
View all 21 lines...
Log in to vote
0
Answered by 4 years ago

Simpler solution:

1local player = — your player here
2local character = player.character
3local humanoid = character.Humanoid
4 
5humanoid.WalkSpeed = 0 — default is 13
6humanoid.JumpPower = 0 — default depends

You can set them back when needed :)

Answer this question