Advertisement
FurkingBoi

anarchy

May 7th, 2020
1,271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.27 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local TextLabel = Instance.new("TextLabel")
  9. local TextButton = Instance.new("TextButton")
  10. local TextButton_2 = Instance.new("TextButton")
  11. local TextButton_3 = Instance.new("TextButton")
  12. local TextButton_4 = Instance.new("TextButton")
  13. local TextButton_5 = Instance.new("TextButton")
  14. local TextButton_6 = Instance.new("TextButton")
  15. local Frame_2 = Instance.new("Frame")
  16. local TextButton_7 = Instance.new("TextButton")
  17.  
  18. --Properties:
  19.  
  20. ScreenGui.Parent = game.CoreGui
  21.  
  22. Frame.Parent = ScreenGui
  23. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  24. Frame.Position = UDim2.new(0.0788844526, 0, 0.54004848, 0)
  25. Frame.Size = UDim2.new(0, 297, 0, 274)
  26. Frame.Visible = false
  27. Frame.Active = true
  28. Frame.Draggable = true
  29.  
  30. TextLabel.Parent = Frame
  31. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  32. TextLabel.Size = UDim2.new(0, 297, 0, 23)
  33. TextLabel.Font = Enum.Font.GothamBlack
  34. TextLabel.Text = "State Of Anarchy"
  35. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  36. TextLabel.TextSize = 20
  37.  
  38. TextButton.Parent = Frame
  39. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  40. TextButton.Position = UDim2.new(0.0370370448, 0, 0.145985395, 0)
  41. TextButton.Size = UDim2.new(0, 124, 0, 50)
  42. TextButton.Font = Enum.Font.SourceSans
  43. TextButton.Text = "Steal Backpacks"
  44. TextButton.TextColor3 = Color3.new(0, 0, 0)
  45. TextButton.TextSize = 14
  46. TextButton.MouseButton1Down:connect(function()
  47. for i,v in pairs(game.Workspace.Interactable.Containers:GetChildren()) do
  48. v:SetPrimaryPartCFrame( CFrame.new(game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.p) *CFrame.new(i,0,0) )
  49. end
  50. end)
  51.  
  52. TextButton_2.Parent = Frame
  53. TextButton_2.BackgroundColor3 = Color3.new(1, 1, 1)
  54. TextButton_2.Position = UDim2.new(0.508417487, 0, 0.145985395, 0)
  55. TextButton_2.Size = UDim2.new(0, 124, 0, 50)
  56. TextButton_2.Font = Enum.Font.SourceSans
  57. TextButton_2.Text = "Remove Trees"
  58. TextButton_2.TextColor3 = Color3.new(0, 0, 0)
  59. TextButton_2.TextSize = 14
  60. TextButton_2.MouseButton1Down:connect(function()
  61. while wait(1) do game.Workspace.ChunkingSystem.Trees:ClearAllChildren() end
  62. end)
  63.  
  64. TextButton_3.Parent = Frame
  65. TextButton_3.BackgroundColor3 = Color3.new(1, 1, 1)
  66. TextButton_3.Position = UDim2.new(0.0370370448, 0, 0.434306532, 0)
  67. TextButton_3.Size = UDim2.new(0, 124, 0, 50)
  68. TextButton_3.Font = Enum.Font.SourceSans
  69. TextButton_3.Text = "Remove bushes"
  70. TextButton_3.TextColor3 = Color3.new(0, 0, 0)
  71. TextButton_3.TextSize = 14
  72. TextButton_3.MouseButton1Down:connect(function()
  73. while wait(1) do game.Workspace.ChunkingSystem.Bushes:ClearAllChildren() end
  74. end)
  75.  
  76. TextButton_4.Parent = Frame
  77. TextButton_4.BackgroundColor3 = Color3.new(1, 1, 1)
  78. TextButton_4.Position = UDim2.new(0.0370370448, 0, 0.708029211, 0)
  79. TextButton_4.Size = UDim2.new(0, 124, 0, 50)
  80. TextButton_4.Font = Enum.Font.SourceSans
  81. TextButton_4.Text = "Light At Night"
  82. TextButton_4.TextColor3 = Color3.new(0, 0, 0)
  83. TextButton_4.TextSize = 14
  84. TextButton_4.MouseButton1Down:connect(function()
  85. local name = game.Players.LocalPlayer.Name
  86. local dalaight = Instance.new("PointLight",game.Workspace.Players[name].HumanoidRootPart)
  87. dalaight.Range = 9999
  88. dalaight.Brightness = 5
  89. end)
  90.  
  91. TextButton_6.Parent = Frame
  92. TextButton_6.BackgroundColor3 = Color3.new(1, 0, 0)
  93. TextButton_6.Position = UDim2.new(0.92592591, 0, 0, 0)
  94. TextButton_6.Size = UDim2.new(0, 22, 0, 23)
  95. TextButton_6.Font = Enum.Font.GothamBold
  96. TextButton_6.Text = "X"
  97. TextButton_6.TextColor3 = Color3.new(0, 0, 0)
  98. TextButton_6.TextSize = 28
  99. TextButton_6.MouseButton1Down:connect(function()
  100. Frame.Visible = false
  101. Frame_2.Visible = true
  102. end)
  103.  
  104. Frame_2.Parent = ScreenGui
  105. Frame_2.BackgroundColor3 = Color3.new(1, 1, 1)
  106. Frame_2.Position = UDim2.new(0.00717131514, 0, 0.444174707, 0)
  107. Frame_2.Size = UDim2.new(0, 91, 0, 28)
  108. Frame.Active = true
  109. Frame.Draggable = true
  110.  
  111.  
  112. TextButton_7.Parent = Frame_2
  113. TextButton_7.BackgroundColor3 = Color3.new(1, 1, 1)
  114. TextButton_7.Position = UDim2.new(0, 0, 0.0357142873, 0)
  115. TextButton_7.Size = UDim2.new(0, 100, 0, 200)
  116. TextButton_7.Font = Enum.Font.SourceSans
  117. TextButton_7.Text = "Open"
  118. TextButton_7.TextColor3 = Color3.new(0, 0, 0)
  119. TextButton_7.TextSize = 14
  120. TextButton_7.MouseButton1Down:connect(function()
  121. Frame_2.Visible = false
  122. Frame.Visible = true
  123. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement