HOW TO MAKE A TELEPORTER GUI 🛠️ Roblox Studio Tutorial

Опубликовано: 11 Июнь 2023
на канале: Itz_FloppyFish
68,834
3.6k

In todays short I show you how to make a teleporter in Roblox Studio. I Hope you enjoyed the video, Have a lovely rest of your day! If you are a bit confused what to do, Feel free to message me on Discord and Ill help you out!

Script 1 (Open Gui) :

script.Parent.MouseButton1Click:Connect(function()
script.Parent.Parent.Parent.YourFrameName.Visible = not script.Parent.Parent.Parent.YourFrameName.Visible
end)


Script 2 (Teleport Script) :

wait(1)
player = game.Players.LocalPlayer
button = script.Parent
local debounce = false

function teleport()
if not debounce then
debounce = true
local LowerTorso = player.Character.LowerTorso
LowerTorso.CFrame = game.Workspace.CHANGEYOURPARTNAME.CFrame -- Change "CHANGEYOURPARTNAME" to whatever you rename your part to.
script.Parent.Parent.Visible = false
end
end

button.MouseButton1Click:Connect(teleport)
while true do wait()
debounce = false
wait(2) -- This limits to how often a player can click the teleport button (In seconds).
end

If you would like to support me even more, Super Thanks is also another way to show your appreciation!

🌟 Floppys Discord Server:   / discord  
🌟 Floppys Roblox Game : https://www.roblox.com/games/11301003...

Roblox Studio Tutorial
Roblox Studio
Studio Tutorials


Смотрите видео HOW TO MAKE A TELEPORTER GUI 🛠️ Roblox Studio Tutorial онлайн без регистрации, длительностью часов минут секунд в хорошем качестве. Это видео добавил пользователь Itz_FloppyFish 11 Июнь 2023, не забудьте поделиться им ссылкой с друзьями и знакомыми, на нашем сайте его посмотрели 68,834 раз и оно понравилось 3.6 тысяч людям.