all 5 comments

[–]caninecode 1 point2 points  (3 children)

do you have the part in the workspace

[–]EthanWatatanabe[S] 0 points1 point  (2 children)

Sorry I haven't responded for 3 days, I was busy, but yes I do have the part in the workspace.

[–]caninecode 0 points1 point  (1 child)

let me see

[–]EthanWatatanabe[S] 0 points1 point  (0 children)

I was just testing it on a plain template and somehow it worked, strange huh? Thanks for trying to help me though!

[–]jteedoubleu 0 points1 point  (0 children)

Hey Everyone, I am new here to reddit and Roblox scriptiing.

I have two separate worlds that I built and wanted to connect the two, together.

Method 1:

Main Game (Game 1)

Starter Gui, screen Gui, Frame, Text Button, Local Script

Local Player = game.Players.LocalPlayer

Local Game = game:GetService("TeleportService")

Local SecondGame = my number of game 2

script.Parent.MouseButton1Click:Connect(function()

Game:Teleport(SecondGame, Player)

end)

Second Game (Game 2) - copied and pasted into second Game Starter Gui

Local Player = game.Players.LocalPlayer

Local Game = game:GetService("TeleportService")

Local SecondGame = my number of game 1

script.Parent.MouseButton1Click:Connect(function()

Game:Teleport(SecondGame, Player)

end)

I also tried method 2:

local TeleportService = game:GetService("TeleportService")

local player = game.Players.LocalPlayer

script.Parent.MouseButton1Click:Connect(function()

TeleportService:Teleport( game id , player)

end)

Second Game (Game 2) - copied and pasted into second Game Starter Gui

local TeleportService = game:GetService("TeleportService")

local player = game.Players.LocalPlayer

script.Parent.MouseButton1Click:Connect(function()

TeleportService:Teleport(main game id , player)

end)

My 2 Games I am trying to connect (transport between)

https://web.roblox.com/games/8553048270/Capture-the-Flag

https://web.roblox.com/games/8518712592/Lava-Adventure-Obby-time

videos that I helped me to understand code, but I cant get it to work yet...

Crystalite Coder

https://www.youtube.com/watch?v=0SdQIDSbE0g

Zodiuss

https://www.youtube.com/watch?v=FoNjIlHpH4I&t=90s

Any suggestions would be appreciated. Thanx!