#(I'm very new) How do I make a loading screen server that teleports to a game server

1 messages · Page 1 of 1 (latest)

daring bobcat
#

How would I make a small optimized server that is just a main menu screen that has buttons and ui etc (not the main focus but would be nice) but one of these buttons teleports you to another part of the game that is a new server that contains the actual game

for example this is what I'm asking to know how to do
https://www.roblox.com/games/2916899287/Blackhawk-Rescue-Mission-5

Roblox

Check out Blackhawk Rescue Mission 5. It’s one of the millions of unique, user-generated 3D experiences created on Roblox. Based on PlatinumFive's original Military RP games.

Developer: GameLoaded Entertainment
Publisher: PLATINUM FIVE

Programming: AdministratorGnar (@Luke_Gnar)

Map Design: PandaWithNoName (@PandaWithNoName)
Gravity...

brittle latch
#

You'll need to use TeleportService

#

you detect the button click and then tp to the actual game

#

simple

daring bobcat
#

elaborate

#

could you show me an example

brittle latch
#

teleport script?

daring bobcat
#

yes

#

and maybe a simple gui botton

#

also

#

I just started this like 3 hours ago

#

i know a decent amount of java

#

and tiny bit of python if that helps

brittle latch
#
local TeleportService = game:GetService("TeleportService")
local Players = game:GetService("Players")

local PLACE_ID = 0 -- replace here
local button = script.Parent

button.Activated:Connect(function()
    TeleportService:Teleport(PLACE_ID,Players.LocalPlayer)
end)
daring bobcat
#

So i'm assuming i need to make a new place for the actual game to occure

daring bobcat
#

thank you

#

ill let you know if i need anything else

brittle latch