RoSploitzer

Superhero Simulator Autofarm [ Kicks u after 10-50 mil ]

Jun 19th, 2019
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.94 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local GUIName = Instance.new("Frame")
  3. local TextLabel = Instance.new("TextLabel")
  4. local Main = Instance.new("Frame")
  5. local TopHeader = Instance.new("Frame")
  6. local AnomalyLabel = Instance.new("TextLabel")
  7. local Top = Instance.new("Frame")
  8. local Bottom = Instance.new("Frame")
  9. local IceCreamVan = Instance.new("TextButton")
  10. --Properties:
  11. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  12. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  13.  
  14. GUIName.Name = "GUIName"
  15. GUIName.Parent = ScreenGui
  16. GUIName.BackgroundColor3 = Color3.new(1, 1, 1)
  17. GUIName.BackgroundTransparency = 1
  18. GUIName.Position = UDim2.new(0, 0, 0.959004402, 0)
  19. GUIName.Size = UDim2.new(0, 158, 0, 28)
  20.  
  21. TextLabel.Parent = GUIName
  22. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  23. TextLabel.BackgroundTransparency = 1
  24. TextLabel.BorderSizePixel = 0
  25. TextLabel.Position = UDim2.new(0.0569620244, 0, -1.14285707, 0)
  26. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  27. TextLabel.Font = Enum.Font.GothamBold
  28. TextLabel.Text = "Anomaly 1.0"
  29. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  30. TextLabel.TextScaled = true
  31. TextLabel.TextSize = 14
  32. TextLabel.TextWrapped = true
  33.  
  34. Main.Name = "Main"
  35. Main.Parent = ScreenGui
  36. Main.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  37. Main.BackgroundTransparency = 0.070000000298023
  38. Main.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  39. Main.Position = UDim2.new(0.340080976, 0, 0.311859429, 0)
  40. Main.Size = UDim2.new(0, 394, 0, 256)
  41.  
  42. TopHeader.Name = "TopHeader"
  43. TopHeader.Parent = Main
  44. TopHeader.BackgroundColor3 = Color3.new(1, 1, 1)
  45. TopHeader.BackgroundTransparency = 0.070000000298023
  46. TopHeader.BorderColor3 = Color3.new(1, 1, 1)
  47. TopHeader.BorderSizePixel = 0
  48. TopHeader.Size = UDim2.new(0, 394, 0, 34)
  49.  
  50. AnomalyLabel.Name = "AnomalyLabel"
  51. AnomalyLabel.Parent = TopHeader
  52. AnomalyLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  53. AnomalyLabel.BorderSizePixel = 0
  54. AnomalyLabel.Size = UDim2.new(0, 394, 0, 34)
  55. AnomalyLabel.Font = Enum.Font.GothamBold
  56. AnomalyLabel.Text = "Anomaly"
  57. AnomalyLabel.TextColor3 = Color3.new(0, 0, 0)
  58. AnomalyLabel.TextSize = 14
  59.  
  60. Top.Name = "Top"
  61. Top.Parent = Main
  62. Top.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  63. Top.BackgroundTransparency = 0.070000000298023
  64. Top.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  65. Top.Position = UDim2.new(-0.000830233097, 0, -0.249130726, 0)
  66. Top.Size = UDim2.new(0, 395, 0, 57)
  67.  
  68. Bottom.Name = "Bottom"
  69. Bottom.Parent = Main
  70. Bottom.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  71. Bottom.BackgroundTransparency = 0.070000000298023
  72. Bottom.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  73. Bottom.Position = UDim2.new(-2.05179676e-05, 0, 1.02505028, 0)
  74. Bottom.Size = UDim2.new(0, 395, 0, 57)
  75.  
  76. IceCreamVan.Name = "IceCreamVan"
  77. IceCreamVan.Parent = Main
  78. IceCreamVan.BackgroundColor3 = Color3.new(0.0509804, 0.0509804, 0.0509804)
  79. IceCreamVan.BorderSizePixel = 0
  80. IceCreamVan.Position = UDim2.new(0.0253807101, 0, 0.1640625, 0)
  81. IceCreamVan.Size = UDim2.new(0, 125, 0, 39)
  82. IceCreamVan.Font = Enum.Font.SourceSans
  83. IceCreamVan.Text = "Superhero Simulator"
  84. IceCreamVan.TextColor3 = Color3.new(1, 1, 1)
  85. IceCreamVan.TextScaled = true
  86. IceCreamVan.TextSize = 20
  87. IceCreamVan.TextWrapped = true
  88. -- Scripts:
  89.  
  90. local b = Instance.new("BlurEffect")
  91. b.Parent = game:GetService("Lighting")
  92. b.Size = 24 -- Lower is less blur and higher is more.
  93. local mouse1 = game.Players.LocalPlayer:GetMouse()
  94. mouse1.KeyDown:connect(function(key)
  95. if key == "g" then
  96. if Openn == true then
  97. Openn = false
  98. Main.Visible = false
  99. b.Enabled = false
  100. else
  101. Openn = true
  102. Main.Visible = true
  103. b.Enabled = true
  104. end
  105. end
  106. end)
  107.  
  108. local RainbowEnabled = true
  109. local rs = game:GetService("RunService")
  110. local RRAAIINNBBOOWWSS = {}
  111. local function rainbowify(obj, prop)
  112. if type(obj) == "table" then
  113. for i, v in pairs(obj) do
  114. rainbowify(v, prop)
  115. end
  116. elseif type(prop) == "table" then
  117. for i, v in pairs(prop) do
  118. rainbowify(obj, v)
  119. end
  120. else
  121. local ok, o = pcall(function()
  122. return obj[prop]
  123. end)
  124. if ok then
  125. table.insert(RRAAIINNBBOOWWSS, function(c)
  126. if c then
  127. obj[prop] = c
  128. else
  129. obj[prop] = o
  130. end
  131. end)
  132. end
  133. end
  134. end
  135. do
  136. local reset = true
  137. rs.RenderStepped:connect(function()
  138. if RainbowEnabled then
  139. local c = Color3.fromHSV((tick() / 16) % 1, 1, 1)
  140. for i = 1, #RRAAIINNBBOOWWSS do
  141. pcall(RRAAIINNBBOOWWSS[i], c)
  142. end
  143. reset = true
  144. elseif reset then
  145. for i = 1, #RRAAIINNBBOOWWSS do
  146. pcall(RRAAIINNBBOOWWSS[i], false)
  147. end
  148. reset = false
  149. end
  150. end)
  151. end
  152. rainbowify({AnomalyLabel, TopHeader}
  153. , {"BackgroundColor3",})
  154.  
  155. local mouse1 = game.Players.LocalPlayer:GetMouse()
  156. mouse1.KeyDown:connect(function(key)
  157. if key == "r" then
  158. RainbowEnabled = not RainbowEnabled
  159. if RainbowEnabled then
  160. game:GetService("StarterGui"):SetCore("SendNotification", {Title = "Rainbow is turned on!", Text = "Anomaly"})
  161. else
  162. game:GetService("StarterGui"):SetCore("SendNotification", {Title = "Rainbow is turned off!", Text = "Anomaly"})
  163. end
  164. end
  165. end)
  166. IceCreamVan.MouseButton1Down:connect(function()
  167. while wait(.1) do
  168. for i, v in pairs(game.Workspace.CoinSpawners:GetChildren()) do
  169. wait(0.01)
  170. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  171. end
  172. end
  173. end)
  174.  
  175. send("Anomaly 1.0 loaded suscefully.", "Anomaly")
  176. send("Credits to Levitate for making this GUI.", "Anomaly")
Add Comment
Please, Sign In to add comment