Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local TextButton = Instance.new("TextButton")
- local TextLabel = Instance.new("TextLabel")
- local TextButton_2 = Instance.new("TextButton")
- ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui
- ScreenGui.ResetOnSpawn = false
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
- Frame.BorderColor3 = Color3.fromRGB(0, 0, 0)
- Frame.Position = UDim2.new(0.406716406, 0, 0.896226406, 0)
- Frame.Size = UDim2.new(0, 150, 0, 55)
- TextButton.Parent = Frame
- TextButton.BackgroundColor3 = Color3.fromRGB(65, 65, 65)
- TextButton.BorderSizePixel = 0
- TextButton.Position = UDim2.new(0.086666666, 0, 0.181818172, 0)
- TextButton.Size = UDim2.new(0, 123, 0, 36)
- TextButton.Font = Enum.Font.Unknown
- TextButton.Text = "TELEPORT"
- TextButton.TextColor3 = Color3.fromRGB(255, 255, 255)
- TextButton.TextSize = 14.000
- TextButton.TextStrokeTransparency = 0.700
- TextButton.TextWrapped = true
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.fromRGB(65, 65, 65)
- TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
- TextLabel.Position = UDim2.new(0.0469999984, 0, -0.300000012, 0)
- TextLabel.Size = UDim2.new(0, 136, 0, 15)
- TextLabel.Font = Enum.Font.GothamBold
- TextLabel.Text = "!Click once after you join!"
- TextLabel.TextColor3 = Color3.fromRGB(0, 255, 0)
- TextLabel.TextScaled = true
- TextLabel.TextSize = 14.000
- TextLabel.TextWrapped = true
- TextButton_2.Parent = Frame
- TextButton_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextButton_2.BackgroundTransparency = 1.000
- TextButton_2.Position = UDim2.new(1, 0, -0.309090912, 0)
- TextButton_2.Size = UDim2.new(0, 15, 0, 15)
- TextButton_2.Font = Enum.Font.GothamBold
- TextButton_2.Text = "X"
- TextButton_2.TextColor3 = Color3.fromRGB(255, 0, 0)
- TextButton_2.TextSize = 14.000
- TextButton_2.TextStrokeTransparency = 0.700
- local function teleportfunction()
- local script = Instance.new('LocalScript', TextButton)
- function Teleport(teleportPlace)
- local player = game.Players.LocalPlayer
- player.Character.HumanoidRootPart.CFrame = teleportPlace
- end
- script.Parent.MouseButton1Click:Connect(function()
- Teleport(game:GetService("Workspace").Stages.EndStage.Start.CFrame)
- end)
- end
- coroutine.wrap(teleportfunction)()
- local function basicbaldi()
- local script = Instance.new('LocalScript', TextLabel)
- while true do
- wait(1)
- script.Parent.TextColor3 = Color3.new(1, 0, 0)
- wait(1)
- script.Parent.TextColor3 = Color3.new(0, 0, 1)
- wait(1)
- script.Parent.TextColor3 = Color3.new(0, 1, 0)
- end
- end
- coroutine.wrap(basicbaldi)()
- local function catvskid()
- local script = Instance.new('LocalScript', TextButton_2)
- script.Parent.MouseButton1Click:Connect(function()
- script.Parent.Parent.Parent:Destroy()
- end)
- end
- coroutine.wrap(catvskid)()
- local function kidvsdog()
- local script = Instance.new('LocalScript', ScreenGui)
- local frame = script.Parent.Frame
- frame.Active = true
- frame.Selectable = true
- frame.Draggable = true
- end
- coroutine.wrap(kidvsdog)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement