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

How would I make a player teleport by saying something in chat?

Asked by 2 years ago

I'm working on a game currently and want to add a secret parkour level for a badge. I want players to be able to type, for example, "Yessir" into the chat then teleports them to the parkour and deletes the "Yessir" message (the parkour is a separate place/game.) If anyone could help me that would be awesome!

1 answer

Log in to vote
0
Answered by 2 years ago
Edited 2 years ago
game.Players.PlayerAdded:Connect(function(player) 
    player.Chatted:Connect(function(msg) 
        if msg == "Yessir" then
            game:GetService('TeleportService'):Teleport(GameID) 
        end
    end)
end)

player.Chatted is a function that detects when the player writes something into chat and msg is a parameter which is what the player typed into the chat.

You can use TeleportService to teleport players to different servers and games

local TeleportService = game:GetService("TeleportService")
TeleportService:Teleport(gameid)
0
Thank you, it's appreciated! DJTwisted_2 0 — 2y
0
Where would I put this, server script storage? DJTwisted_2 0 — 2y
0
a script in server script service would work CountOnMeBro 51 — 2y
Ad

Answer this question