Advertisement
Anukun_Lucifer

TeleportScript

May 20th, 2023
1,422
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.37 KB | Gaming | 0 0
  1. local platform = game.Workspace.Balloon.Platform
  2. local teleportgui = script.Parent
  3. local closegui = game.Workspace.Closegui
  4.  
  5. platform.Touched:Connect(function(teleport)
  6.     if teleport.Parent.Humanoid then
  7.         teleportgui.Visible = true
  8.     end
  9. end)
  10.  
  11. closegui.Touched:Connect(function(offteleport)
  12.     if offteleport.Parent.Humanoid then
  13.         teleportgui.Visible = false
  14.     end
  15. end)
  16.  
Tags: Roblox
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement