of     1   

Kramer777
#183899321Thursday, February 18, 2016 8:43 PM GMT

I've tried this but it doesn't work. for _, controller in pairs(game:GetService("ControllerService"):GetChildren()) do controller.Parent = false end
Kramer777
#183899537Thursday, February 18, 2016 8:47 PM GMT

Bump
cofunction
#183899579Thursday, February 18, 2016 8:48 PM GMT

Just disable the control script in the player's playerscripts.
Kramer777
#183899912Thursday, February 18, 2016 8:55 PM GMT

I also want to give back the player's control so I can't do that.
phoenix53124
#183900582Thursday, February 18, 2016 9:09 PM GMT

Then Enable it.
ZappleOfficial
#183900709Thursday, February 18, 2016 9:11 PM GMT

Just make a script that disables the control script then re-enables it
ZappleOfficial
#183900820Thursday, February 18, 2016 9:13 PM GMT

Put this in a localscript then put this is StarterPack local player = game.Players.LocalPlayer wait(3) player.PlayerScripts.ControlScript.Disabled = true wait(3) player.PlayerScripts.ControlScript.Disabled = false

    of     1