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

How do you make it so you can only join a game with a teleporter and...?

Asked by 5 years ago

How do you make it so when you can only join a game with a teleporter? for example: You are in game 1, and you are worrying how to get to the secret game without going in the teleporter You leave the game and try to join game 2, but instead you get sent to game 1 Does anyone know?

Also

how do you make it so when you say a word the brick opens example: User1: hmm, i need to say a word to open this brick User2: It is a picture of Mario, so you have to say Mario. User1: Mario The brick opens for some seconds then closes

0
This isn't a request site. You need to give a script so other users can find a way to help you fix it GamingOverlord756 48 — 5y

1 answer

Log in to vote
0
Answered by
farizarps 132
5 years ago

Roblox automatically does this as long as place1 is set as Starting Place

also

for the brick one, you will need to use the Chatted event and set the parts CanCollide to false and Transparency to something like 0.5

game.Players.PlayerAdded:connect(function(player)
    player.Chatted:connect(function(msg)
        -- do stuff with msg and player
    end)
end)
Ad

Answer this question