FlashhSupreme

Untitled

Nov 28th, 2019
5,761
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.61 KB | None | 0 0
  1. -- God Simulator 2 GUI
  2. -- Scripted by Flash
  3.  
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Gui = Instance.new("Frame")
  6. local Textattop = Instance.new("TextBox")
  7. local Strength = Instance.new("TextButton")
  8. local CloseButton = Instance.new("TextButton")
  9. local Admin = Instance.new("TextButton")
  10. local OpenFrame = Instance.new("Frame")
  11. local OpenButton = Instance.new("TextButton")
  12. --Properties:
  13. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  14. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  15.  
  16. Gui.Name = "Flash"
  17. Gui.Parent = ScreenGui
  18. Gui.BackgroundColor3 = Color3.new(0.647059, 0.647059, 0.647059)
  19. Gui.BorderColor3 = Color3.new(0.054902, 0.317647, 0.388235)
  20. Gui.BorderSizePixel = 3
  21. Gui.Position = UDim2.new(0.357402921, 0, 0.279389322, 0)
  22. Gui.Size = UDim2.new(0, 283, 0, 142)
  23.  
  24. Textattop.Name = "Text at top"
  25. Textattop.Parent = Gui
  26. Textattop.BackgroundColor3 = Color3.new(1, 1, 1)
  27. Textattop.BackgroundTransparency = 1
  28. Textattop.Position = UDim2.new(0.144876331, 0, 0.0774647892, 0)
  29. Textattop.Size = UDim2.new(0, 200, 0, 31)
  30. Textattop.Font = Enum.Font.SourceSans
  31. Textattop.Text = "GUI By Filiz"
  32. Textattop.TextColor3 = Color3.new(0.054902, 0.317647, 0.388235)
  33. Textattop.TextSize = 30
  34.  
  35. Strength.Name = "Strength"
  36. Strength.Parent = Gui
  37. Strength.BackgroundColor3 = Color3.new(0.647059, 0.647059, 0.647059)
  38. Strength.BorderColor3 = Color3.new(0.054902, 0.317647, 0.388235)
  39. Strength.BorderSizePixel = 3
  40. Strength.Position = UDim2.new(0.162544176, 0, 0.676056325, 0)
  41. Strength.Size = UDim2.new(0, 190, 0, 35)
  42. Strength.Font = Enum.Font.SourceSans
  43. Strength.Text = "Spam Strength (hold Pillar)"
  44. Strength.TextColor3 = Color3.new(0.054902, 0.317647, 0.388235)
  45. Strength.TextSize = 18
  46.  
  47. CloseButton.Name = "CloseButton"
  48. CloseButton.Parent = Gui
  49. CloseButton.BackgroundColor3 = Color3.new(1, 0, 0)
  50. CloseButton.Position = UDim2.new(0.893992901, 0, 0, 0)
  51. CloseButton.Size = UDim2.new(0, 30, 0, 21)
  52. CloseButton.Font = Enum.Font.SourceSans
  53. CloseButton.Text = "X"
  54. CloseButton.TextColor3 = Color3.new(1, 1, 1)
  55. CloseButton.TextSize = 30
  56.  
  57. Admin.Parent = Gui
  58. Admin.BackgroundColor3 = Color3.new(0.647059, 0.647059, 0.647059)
  59. Admin.BorderColor3 = Color3.new(0.054902, 0.317647, 0.388235)
  60. Admin.BorderSizePixel = 3
  61. Admin.Position = UDim2.new(0.162544176, 0, 0.330985904, 0)
  62. Admin.Size = UDim2.new(0, 190, 0, 33)
  63. Admin.Font = Enum.Font.SourceSans
  64. Admin.Text = "Infinite Yield Admin"
  65. Admin.TextColor3 = Color3.new(0.054902, 0.317647, 0.388235)
  66. Admin.TextSize = 20
  67.  
  68. OpenFrame.Name = "OpenFrame"
  69. OpenFrame.Parent = ScreenGui
  70. OpenFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  71. OpenFrame.Position = UDim2.new(0.272621349, 0, 0.95419848, 0)
  72. OpenFrame.Size = UDim2.new(0, 296, 0, 30)
  73. OpenFrame.Visible = false
  74.  
  75. OpenButton.Name = "OpenButton"
  76. OpenButton.Parent = OpenFrame
  77. OpenButton.BackgroundColor3 = Color3.new(0, 0, 0)
  78. OpenButton.Position = UDim2.new(0.0270270277, 0, 0.100000001, 0)
  79. OpenButton.Size = UDim2.new(0, 280, 0, 23)
  80. OpenButton.Font = Enum.Font.SourceSans
  81. OpenButton.Text = "Open"
  82. OpenButton.TextColor3 = Color3.new(0.054902, 0.317647, 0.388235)
  83. OpenButton.TextSize = 30
  84. -- Scripts:
  85.  
  86. OpenButton.MouseButton1Down:connect(function()
  87. OpenFrame.Visible = false
  88. Gui.Visible = true
  89. end)
  90.  
  91. CloseButton.MouseButton1Down:connect(function()
  92. OpenFrame.Visible = true
  93. Gui.Visible = false
  94. end)
  95.  
  96. Strength.MouseButton1Down:connect(function()
  97. for i = 1,5000 do
  98. game.ReplicatedStorage.addStrength:InvokeServer(game.Workspace.filiz10["Column Weight"].Handle, 30, "GODSIMULATOR5453")
  99. end
  100. end)
  101.  
  102. Admin.MouseButton1Down:connect(function()
  103. loadstring(game:HttpGet(('https://pastebin.com/raw/MjBzRjmT'),true))()
  104. end)
Advertisement
Add Comment
Please, Sign In to add comment