RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"can you make a script that when a player says 'HELLO' their speed is set too 500"
-- server script local function onPlayerChatted(player, message) if message:upper() == "HELLO" then player.Character.Humanoid.WalkSpeed = 500 end end local function onPlayerAdded(player) player.Chatted:Connect(function(message) onPlayerChatted(player, message) end) end game.Players.PlayerAdded:Connect(onPlayerAdded)