Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local platform = game.Workspace.Balloon.Platform
- local teleportgui = script.Parent
- local closegui = game.Workspace.Closegui
- platform.Touched:Connect(function(teleport)
- if teleport.Parent.Humanoid then
- teleportgui.Visible = true
- end
- end)
- closegui.Touched:Connect(function(offteleport)
- if offteleport.Parent.Humanoid then
- teleportgui.Visible = false
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement