Advertisement
zCrownz

Untitled

Sep 21st, 2021
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1.  
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local main = Instance.new("Frame")
  5. local Ligar = Instance.new("TextButton")
  6. local Desligar = Instance.new("TextButton")
  7.  
  8. --Properties:
  9.  
  10. ScreenGui.Parent = game.CoreGui
  11.  
  12. main.Name = "main"
  13. main.Parent = ScreenGui
  14. main.BackgroundColor3 = Color3.fromRGB(48, 48, 48)
  15. main.Position = UDim2.new(0, 0, 0.387878776, 0)
  16. main.Size = UDim2.new(0, 38, 0, 110)
  17. main.Active = true
  18. main.Draggable = true
  19.  
  20. Ligar.Name = "Ligar"
  21. Ligar.Parent = main
  22. Ligar.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  23. Ligar.Size = UDim2.new(0, 38, 0, 50)
  24. Ligar.Font = Enum.Font.SourceSans
  25. Ligar.Text = "ON"
  26. Ligar.TextColor3 = Color3.fromRGB(255, 255, 255)
  27. Ligar.TextSize = 20.000
  28. Ligar.MouseButton1Down:connect(function()
  29. _G.Stop = false -- false = script is on; true = script is off
  30. _G.World = "Tech" -- Worlds: "Fantasy" & "Spawn"
  31. _G.Area = "Dark Tech" -- See the above comment and select something..
  32.  
  33. loadstring(game:HttpGet('https://pastebin.com/raw/tGUJRjqb'))()
  34. end)
  35.  
  36. Desligar.Name = "Desligar"
  37. Desligar.Parent = main
  38. Desligar.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  39. Desligar.Position = UDim2.new(0, 0, 0.545454562, 0)
  40. Desligar.Size = UDim2.new(0, 38, 0, 50)
  41. Desligar.Font = Enum.Font.SourceSans
  42. Desligar.Text = "OFF"
  43. Desligar.TextColor3 = Color3.fromRGB(255, 255, 255)
  44. Desligar.TextSize = 20.000
  45. Desligar.MouseButton1Down:connect(function()
  46. _G.Stop = true -- false = script is on; true = script is off
  47. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement