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

How do I disable a player's control?

Asked by
Nickelz 37
6 years ago

I am trying to make a cutscene that includes a player walking to a point and such, but I cannot do that if the player decides to move by pressing the A,W,S,D keys or the arrow buttons. I used to use this:

01--LocalScript
02local control = script.Parent:WaitForChild("ControlScript")
03function Stop()
04    control.Parent = nil
05end
06function Resume()
07    control.Parent = script.Parent
08end
09wait()
10Stop()
11wait(1000)
12Resume()

but aparently that is outdated and roblox uses module scripts to control that sort of stuff now, so I looked around and I found this:

1local PlayerModule = require(game.Players.LocalPlayer.PlayerScripts:WaitForChild("PlayerModule"))
2local Controls = PlayerModule:GetControls()
3Controls:Disable()

and I pasted that into a local script inside StarterPlayerScripts without any outcome. Am I doing something wrong?

0
i tested it in a blank baseplate and it worked perfectly? (player module:Disable() method) the8bitdude11 358 — 6y

1 answer

Log in to vote
1
Answered by
Kulh 125
6 years ago
Edited 6 years ago

Oops!! I did some testing, and found that the server cannot see the PlayerScripts folder!

This means you need to get the PlayerScripts folder in a local script, and fire it to the server script using a RemoteFunction!!

Here is what I came up with:

What you need:

RemoteEvent named "SendPlayerModule" located in ReplicatedStorage. Server-sided Script, located in ServerScriptService. Local-Script, located in StarterPlayerScripts.

Server script:

1function playerFirstJoins(player)
2    local event = game:GetService("ReplicatedStorage"):FindFirstChild("SendPlayerModule")
3    local playa = player
4    event:FireClient(player,playa)
5end
6 
7game.Players.PlayerAdded:Connect(playerFirstJoins)

Local-Script:

01local event = game:GetService("ReplicatedStorage"):FindFirstChild("SendPlayerModule")
02 
03event.OnClientEvent:Connect(function(playa)
04    if playa.Name == game.Players.LocalPlayer.Name then
05        local PlayerModule = require(game.Players.LocalPlayer.PlayerScripts:WaitForChild("PlayerModule"))
06        local Controls = PlayerModule:GetControls()
07        Controls:Disable()
08    else
09        return
10    end
11 
12end)
Ad

Answer this question