Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local screen = Instance.new("ScreenGui")
- screen.Parent = game.CoreGui
- local gui = Instance.new("TextButton")
- gui.Parent = screen
- gui.TextColor3 = Color3.new(0, 255, 0)
- gui.Draggable = true
- gui.Size = UDim2.new(.1, 0, .1, 0)
- local boolean = true
- local breaked = false
- gui.MouseButton1Click:Connect(function()
- if boolean then
- gui.TextColor3 = Color3.new(255, 0, 0)
- boolean = false
- else
- gui.TextColor3 = Color3.new(0, 255, 0)
- boolean = true
- end
- end)
- while wait() do
- game.Workspace.Remoter.Rebirth:FireServer()
- if boolean then
- for i,v in pairs(workspace:GetChildren()) do
- if v.Name == "MapBackground" then
- for a,b in pairs(v.DrinksFolder.DrinkSips:GetChildren()) do
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame=b.CFrame
- wait(.01)
- if not boolean then
- breaked = true
- break
- end
- end
- if breaked then
- break
- end
- for a,b in pairs(v.DrinksFolder.DrinkXP:GetChildren()) do
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame=b.CFrame
- wait(.01)
- if not boolean then
- breaked = true
- break
- end
- end
- if breaked then
- break
- end
- end
- end
- breaked = false
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement