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

Minigames My own Engine How to Spawn players in?

Asked by 6 years ago
Edited 6 years ago

Hello so i not very much learned scripting and i making simple one system so heres the script but i want that after 30 seconds players will spawn to Map in random map locations? Can you add some script here and Write in Line Titles?

01while true do
02    wait(30)
03    game.Lighting.Map1:clone().Parent = game.Workspace
04    wait(180)
05    local msg = Instance.new("Message")
06    msg.Parent = game.Workspace
07    msg.Text = ("Loading next map")
08    wait(4)
09    msg:remove()
10    game.Workspace.Map1:remove()
11    wait(2)
12 
13    wait(30)
14    game.Lighting.Map2:clone().Parent = game.Workspace
15    wait(180)
View all 31 lines...

1 answer

Log in to vote
2
Answered by 6 years ago
Edited 6 years ago

Use CFrame and Vector3 to teleport players, https://wiki.roblox.com/index.php?title=Teleporting_Within_a_Place

Just read that and put it in your script. Please accept my answer if it works because we both get reputation.

MajinBluee

0
Worked User#21499 0 — 6y
Ad

Answer this question