Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local ScreenGui = Instance.new("ScreenGui")
- local main = Instance.new("Frame")
- local Ligar = Instance.new("TextButton")
- local Desligar = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.CoreGui
- main.Name = "main"
- main.Parent = ScreenGui
- main.BackgroundColor3 = Color3.fromRGB(48, 48, 48)
- main.Position = UDim2.new(0, 0, 0.387878776, 0)
- main.Size = UDim2.new(0, 38, 0, 110)
- main.Active = true
- main.Draggable = true
- Ligar.Name = "Ligar"
- Ligar.Parent = main
- Ligar.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- Ligar.Size = UDim2.new(0, 38, 0, 50)
- Ligar.Font = Enum.Font.SourceSans
- Ligar.Text = "ON"
- Ligar.TextColor3 = Color3.fromRGB(255, 255, 255)
- Ligar.TextSize = 20.000
- Ligar.MouseButton1Down:connect(function()
- _G.Stop = false -- false = script is on; true = script is off
- _G.World = "Tech" -- Worlds: "Fantasy" & "Spawn"
- _G.Area = "Dark Tech" -- See the above comment and select something..
- loadstring(game:HttpGet('https://pastebin.com/raw/tGUJRjqb'))()
- end)
- Desligar.Name = "Desligar"
- Desligar.Parent = main
- Desligar.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- Desligar.Position = UDim2.new(0, 0, 0.545454562, 0)
- Desligar.Size = UDim2.new(0, 38, 0, 50)
- Desligar.Font = Enum.Font.SourceSans
- Desligar.Text = "OFF"
- Desligar.TextColor3 = Color3.fromRGB(255, 255, 255)
- Desligar.TextSize = 20.000
- Desligar.MouseButton1Down:connect(function()
- _G.Stop = true -- false = script is on; true = script is off
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement