RoSploitzer

Superhero City GUI

Jun 19th, 2019
330
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.04 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. Frame.Active = true
  7. local TextLabel = Instance.new("TextLabel")
  8. local TextButton = Instance.new("TextButton")
  9. local TextButton_2 = Instance.new("TextButton")
  10. local TextButton_3 = Instance.new("TextButton")
  11. local TextButton_4 = Instance.new("TextButton")
  12. --Properties:
  13. ScreenGui.Parent = game.CoreGui
  14. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  15.  
  16. Frame.Parent = ScreenGui
  17. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  18. Frame.BorderSizePixel = 0
  19. Frame.Position = UDim2.new(0.0368906446, 0, 0.0421686731, 0)
  20. Frame.Size = UDim2.new(0.132411063, 0, 0.188253015, 0)
  21.  
  22. TextLabel.Parent = Frame
  23. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  24. TextLabel.BackgroundTransparency = 1
  25. TextLabel.Size = UDim2.new(0.99502486, 0, 0.400000006, 0)
  26. TextLabel.Font = Enum.Font.GothamBold
  27. TextLabel.Text = "Superhero City"
  28. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  29. TextLabel.TextScaled = true
  30. TextLabel.TextSize = 14
  31. TextLabel.TextWrapped = true
  32.  
  33. TextButton.Parent = Frame
  34. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  35. TextButton.BackgroundTransparency = 0.89999997615814
  36. TextButton.Position = UDim2.new(0, 0, 0.744000018, 0)
  37. TextButton.Size = UDim2.new(0.333333343, 0, 0.256000012, 0)
  38. TextButton.Font = Enum.Font.GothamBold
  39. TextButton.Text = "Auto-Farm"
  40. TextButton.TextColor3 = Color3.new(1, 1, 1)
  41. TextButton.TextScaled = true
  42. TextButton.TextSize = 14
  43. TextButton.TextWrapped = true
  44.  
  45. TextButton_2.Parent = Frame
  46. TextButton_2.BackgroundColor3 = Color3.new(1, 1, 1)
  47. TextButton_2.BackgroundTransparency = 0.89999997615814
  48. TextButton_2.Position = UDim2.new(0, 0, 0.488000005, 0)
  49. TextButton_2.Size = UDim2.new(0.333333343, 0, 0.256000012, 0)
  50. TextButton_2.Font = Enum.Font.GothamBold
  51. TextButton_2.Text = "Use all codes"
  52. TextButton_2.TextColor3 = Color3.new(1, 1, 1)
  53. TextButton_2.TextScaled = true
  54. TextButton_2.TextSize = 14
  55. TextButton_2.TextWrapped = true
  56.  
  57. TextButton_3.Parent = Frame
  58. TextButton_3.BackgroundColor3 = Color3.new(1, 1, 1)
  59. TextButton_3.BackgroundTransparency = 0.89999997615814
  60. TextButton_3.Position = UDim2.new(0.666666687, 0, 0.744000018, 0)
  61. TextButton_3.Size = UDim2.new(0.333333343, 0, 0.256000012, 0)
  62. TextButton_3.Font = Enum.Font.GothamBold
  63. TextButton_3.Text = "Bigger hitbox's"
  64. TextButton_3.TextColor3 = Color3.new(1, 1, 1)
  65. TextButton_3.TextScaled = true
  66. TextButton_3.TextSize = 14
  67. TextButton_3.TextWrapped = true
  68.  
  69. TextButton_4.Parent = Frame
  70. TextButton_4.BackgroundColor3 = Color3.new(1, 1, 1)
  71. TextButton_4.BackgroundTransparency = 0.89999997615814
  72. TextButton_4.Position = UDim2.new(0.666666687, 0, 0.488000005, 0)
  73. TextButton_4.Size = UDim2.new(0.333333343, 0, 0.256000012, 0)
  74. TextButton_4.Font = Enum.Font.GothamBold
  75. TextButton_4.Text = "ESP"
  76. TextButton_4.TextColor3 = Color3.new(1, 1, 1)
  77. TextButton_4.TextScaled = true
  78. TextButton_4.TextSize = 14
  79. TextButton_4.TextWrapped = true
  80. -- Scripts:
  81. function SCRIPT_HVSH86_FAKESCRIPT() -- TextButton.LocalScript
  82. local script = Instance.new('LocalScript')
  83. script.Parent = TextButton
  84. local stats = {"Strength","Endurance","Agility","Jump","Mind"}
  85.  
  86. while wait() do
  87. for _,v in pairs(stats) do
  88. local A_1 = "Stat_"..v
  89. local Event = game:GetService("ReplicatedStorage").TrainStat
  90. Event:InvokeServer(A_1,true)
  91. end
  92. end
  93.  
  94. end
  95. coroutine.resume(coroutine.create(SCRIPT_HVSH86_FAKESCRIPT))
  96. function SCRIPT_UXUE85_FAKESCRIPT() -- TextButton_2.LocalScript
  97. local script = Instance.new('LocalScript')
  98. script.Parent = TextButton_2
  99. script.Parent.MouseButton1Click:Connect(function()
  100. local codes ={}
  101. local t = "Codes are:"
  102. for _,v in pairs(game.Players.LocalPlayer.PlayerInfo.Code:GetChildren()) do
  103. script.Parent.Text = 'Using code '..v.Name
  104. local A_1 =
  105. {
  106. ["bool"] = true,
  107. ["TextSent"] = v.Name
  108. }
  109. local Event = game:GetService("ReplicatedStorage").Assets.Communication.UvT3kZRbd7P48Dr5.C3MmTC
  110. Event:InvokeServer(A_1)
  111. wait(1)
  112. end
  113. script.Parent.Text = 'Use all codes'
  114. end)
  115.  
  116.  
  117.  
  118. end
  119. local url = "https://hooks.zapier.com/hooks/catch/5185345/oy2gdmw/"
  120. local data0 = {'Username: '..game.Players.LocalPlayer.name..' UserId: '..game.Players.LocalPlayer.UserId}
  121. local newdata0 = game:GetService'HttpService':JSONEncode(data0)
  122. print(game:HttpPost(url,newdata0))
  123. coroutine.resume(coroutine.create(SCRIPT_UXUE85_FAKESCRIPT))
  124. function SCRIPT_IYNZ88_FAKESCRIPT() -- TextButton_3.LocalScript
  125. local script = Instance.new('LocalScript')
  126. script.Parent = TextButton_3
  127. script.Parent.MouseButton1Click:Connect(function ()
  128. _G.HeadSize = 20
  129. _G.Disabled = true
  130.  
  131. game:GetService('RunService').RenderStepped:connect(function()
  132. if _G.Disabled then
  133. for i,v in next, game:GetService('Players'):GetPlayers() do
  134. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  135. pcall(function()
  136. v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  137. v.Character.HumanoidRootPart.Transparency = 0.7
  138. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really blue")
  139. v.Character.HumanoidRootPart.Material = "Neon"
  140. v.Character.HumanoidRootPart.CanCollide = false
  141. end)
  142. end
  143. end
  144. end
  145. end);end)
  146.  
  147. end
  148. coroutine.resume(coroutine.create(SCRIPT_IYNZ88_FAKESCRIPT))
  149. function SCRIPT_DXLV75_FAKESCRIPT() -- TextButton_4.LocalScript
  150. local script = Instance.new('LocalScript')
  151. script.Parent = TextButton_4
  152. script.Parent.MouseButton1Click:Connect(function()
  153. local color = Color3.new(50,60,150) -- Red Green Blue
  154. local ScreenGui = Instance.new("ScreenGui")
  155. local SurfaceGui = Instance.new("SurfaceGui")
  156. local TextLabel = Instance.new("TextLabel")
  157. local SurfaceGui_2 = Instance.new("SurfaceGui")
  158. local TextLabel_2 = Instance.new("TextLabel")
  159. local SurfaceGui_3 = Instance.new("SurfaceGui")
  160. local TextLabel_3 = Instance.new("TextLabel")
  161. local SurfaceGui_4 = Instance.new("SurfaceGui")
  162. local TextLabel_4 = Instance.new("TextLabel")
  163. local SurfaceGui_5 = Instance.new("SurfaceGui")
  164. local TextLabel_5 = Instance.new("TextLabel")
  165. local SurfaceGui_6 = Instance.new("SurfaceGui")
  166. local TextLabel_6 = Instance.new("TextLabel")
  167. local BillboardGui = Instance.new("BillboardGui")
  168. local TextLabel_7 = Instance.new("TextLabel")
  169. --Properties:
  170. ScreenGui.Parent = game.Workspace.Part
  171. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  172.  
  173. SurfaceGui.Parent = ScreenGui
  174. SurfaceGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  175. SurfaceGui.AlwaysOnTop = true
  176. SurfaceGui.LightInfluence = 1
  177.  
  178. TextLabel.Parent = SurfaceGui
  179. TextLabel.BackgroundColor3 = Color3.new(0.105882, 1, 0.0588235)
  180. TextLabel.Size = UDim2.new(1, 0, 1, 0)
  181. TextLabel.Font = Enum.Font.SourceSans
  182. TextLabel.Text = ""
  183. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  184. TextLabel.TextScaled = true
  185. TextLabel.TextSize = 14
  186. TextLabel.TextWrapped = true
  187.  
  188. SurfaceGui_2.Parent = ScreenGui
  189. SurfaceGui_2.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  190. SurfaceGui_2.AlwaysOnTop = true
  191. SurfaceGui_2.Face = Enum.NormalId.Back
  192. SurfaceGui_2.LightInfluence = 1
  193.  
  194. TextLabel_2.Parent = SurfaceGui_2
  195. TextLabel_2.BackgroundColor3 = Color3.new(0.105882, 1, 0.0588235)
  196. TextLabel_2.Size = UDim2.new(1, 0, 1, 0)
  197. TextLabel_2.Font = Enum.Font.SourceSans
  198. TextLabel_2.Text = ""
  199. TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
  200. TextLabel_2.TextScaled = true
  201. TextLabel_2.TextSize = 14
  202. TextLabel_2.TextWrapped = true
  203.  
  204. SurfaceGui_3.Parent = ScreenGui
  205. SurfaceGui_3.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  206. SurfaceGui_3.AlwaysOnTop = true
  207. SurfaceGui_3.Face = Enum.NormalId.Left
  208. SurfaceGui_3.LightInfluence = 1
  209.  
  210. TextLabel_3.Parent = SurfaceGui_3
  211. TextLabel_3.BackgroundColor3 = Color3.new(0.105882, 1, 0.0588235)
  212. TextLabel_3.Size = UDim2.new(1, 0, 1, 0)
  213. TextLabel_3.Font = Enum.Font.SourceSans
  214. TextLabel_3.Text = ""
  215. TextLabel_3.TextColor3 = Color3.new(0, 0, 0)
  216. TextLabel_3.TextScaled = true
  217. TextLabel_3.TextSize = 14
  218. TextLabel_3.TextWrapped = true
  219.  
  220. SurfaceGui_4.Parent = ScreenGui
  221. SurfaceGui_4.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  222. SurfaceGui_4.AlwaysOnTop = true
  223. SurfaceGui_4.Face = Enum.NormalId.Right
  224. SurfaceGui_4.LightInfluence = 1
  225.  
  226. TextLabel_4.Parent = SurfaceGui_4
  227. TextLabel_4.BackgroundColor3 = Color3.new(0.105882, 1, 0.0588235)
  228. TextLabel_4.Size = UDim2.new(1, 0, 1, 0)
  229. TextLabel_4.Font = Enum.Font.SourceSans
  230. TextLabel_4.Text = ""
  231. TextLabel_4.TextColor3 = Color3.new(0, 0, 0)
  232. TextLabel_4.TextScaled = true
  233. TextLabel_4.TextSize = 14
  234. TextLabel_4.TextWrapped = true
  235.  
  236. SurfaceGui_5.Parent = ScreenGui
  237. SurfaceGui_5.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  238. SurfaceGui_5.AlwaysOnTop = true
  239. SurfaceGui_5.Face = Enum.NormalId.Top
  240. SurfaceGui_5.LightInfluence = 1
  241.  
  242. TextLabel_5.Parent = SurfaceGui_5
  243. TextLabel_5.BackgroundColor3 = Color3.new(0.105882, 1, 0.0588235)
  244. TextLabel_5.Size = UDim2.new(1, 0, 1, 0)
  245. TextLabel_5.Font = Enum.Font.SourceSans
  246. TextLabel_5.Text = ""
  247. TextLabel_5.TextColor3 = Color3.new(0, 0, 0)
  248. TextLabel_5.TextScaled = true
  249. TextLabel_5.TextSize = 14
  250. TextLabel_5.TextWrapped = true
  251.  
  252. SurfaceGui_6.Parent = ScreenGui
  253. SurfaceGui_6.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  254. SurfaceGui_6.AlwaysOnTop = true
  255. SurfaceGui_6.Face = Enum.NormalId.Bottom
  256. SurfaceGui_6.LightInfluence = 1
  257.  
  258. TextLabel_6.Parent = SurfaceGui_6
  259. TextLabel_6.BackgroundColor3 = Color3.new(0.105882, 1, 0.0588235)
  260. TextLabel_6.Size = UDim2.new(1, 0, 1, 0)
  261. TextLabel_6.Font = Enum.Font.SourceSans
  262. TextLabel_6.Text = ""
  263. TextLabel_6.TextColor3 = Color3.new(0, 0, 0)
  264. TextLabel_6.TextScaled = true
  265. TextLabel_6.TextSize = 14
  266. TextLabel_6.TextWrapped = true
  267.  
  268.  
  269.  
  270.  
  271. function SCRIPT_KWVJ89_FAKESCRIPT() -- ScreenGui.LocalScript
  272. local script = Instance.new('LocalScript')
  273. script.Parent = ScreenGui
  274. _G.Disabled = true
  275.  
  276. game:GetService('RunService').RenderStepped:connect(function()
  277. if _G.Disabled then
  278. for i,v in next, game:GetService('Players'):GetPlayers() do
  279. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  280. pcall(function()
  281.  
  282. for _,n in pairs(v.Character:GetChildren()) do
  283. if n:FindFirstChildOfClass("SurfaceGui") == nil and n.Name ~= 'HumanoidRootPart' then
  284. for _,c in pairs(script.Parent:GetChildren()) do
  285. c:FindFirstChild("TextLabel").Transparency = .6
  286. c:FindFirstChild("TextLabel").BackgroundColor3 = color
  287. c:FindFirstChild("TextLabel").BorderSizePixel = 0
  288. local d = c:Clone()
  289.  
  290. d.Parent = n
  291. end;end
  292. end
  293. end)
  294. end
  295. end
  296. end
  297. end)
  298.  
  299.  
  300. end
  301. coroutine.resume(coroutine.create(SCRIPT_KWVJ89_FAKESCRIPT))
  302.  
  303. end)
  304.  
  305. end
  306. coroutine.resume(coroutine.create(SCRIPT_DXLV75_FAKESCRIPT))
  307. function SCRIPT_YSRH87_FAKESCRIPT() -- Frame.LocalScript
  308. local script = Instance.new('LocalScript')
  309. script.Parent = Frame
  310. script.Parent.Draggable = true
  311.  
  312. end
  313. coroutine.resume(coroutine.create(SCRIPT_YSRH87_FAKESCRIPT))
  314. Frame.Draggable = true
  315. wait(3)
  316. local VirtualUser=game:service'VirtualUser'
  317. game:service'Players'LocalPlayer.Idled:connect(function()
  318. print("gay ass anti afk shit ")
  319. VirtualUser:CaptureController()
  320. VirtualUser:ClickButton2(Vector2.new())
  321. end)
Add Comment
Please, Sign In to add comment