#Is there a way to make a player stop from typing

16 messages · Page 1 of 1 (latest)

magic flicker
#

Is there a way to make a player completely stop from pressing any key or making any "key input" including walking (wasd), except clicking?

supple shale
#

inside a local script in replicated storage

#

local ChatService = game:GetService("Chat")
ChatService:RegisterChatCallback(Enum.ChatCallbackType.OnCreatingChatWindow, function()
return {BubbleChatEnabled = false, ClassicChatEnabled = false}
end)

#

to make the player not walk put this on

#

character:WaitForChild("HumanoidRootPart").Anchored = true

#

or

#

local humanoid = character:WaitForChild("Humanoid")

humanoid.WalkSpeed = 0
humanoid.JumpPower = 0

supple shale
rustic mesa
#

Are you just trying to stop the player from walking?

gray cloakBOT
#

studio** You are now Level 8! **studio

magic flicker
rustic mesa
#

Alright well the first thing then

#

is set the players walkspeed to 0

#

then their jump power and jump height to 0

#

This will stop them from walking and jumping

#

Key inputs trigger an event