Meliodas0_0

[FE] Super Hero Tycoon | Kill, Ragdoll, Punish, Ban, Btools,

Nov 2nd, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.58 KB | None | 0 0
  1. function GetPlayer(String)
  2. local Found = {}
  3. local strl = String:lower()
  4. if strl == "all" then
  5. for i,v in pairs(game.Players:GetPlayers()) do
  6. table.insert(Found,v.Name)
  7. end
  8. elseif strl == "others" then
  9. for i,v in pairs(game.Players:GetPlayers()) do
  10. if v.Name ~= game.Players.LocalPlayer.Name then
  11. table.insert(Found,v.Name)
  12. end
  13. end
  14. elseif strl == "me" then
  15. for i,v in pairs(game.Players:GetPlayers()) do
  16. if v.Name == game.Players.LocalPlayer.Name then
  17. table.insert(Found,v.Name)
  18. end
  19. end
  20. else
  21. for i,v in pairs(game.Players:GetPlayers()) do
  22. if v.Name:lower():sub(1, #String) == String:lower() then
  23. table.insert(Found,v.Name)
  24. end
  25. end
  26. end
  27. return Found
  28. end
  29.  
  30.  
  31. local ScreenGui = Instance.new("ScreenGui")
  32. local Frame = Instance.new("Frame")
  33. local TextBox = Instance.new("TextBox")
  34. local killbtn = Instance.new("TextButton")
  35. local ragdollbtn = Instance.new("TextButton")
  36. local nkdbtn = Instance.new("TextButton")
  37. local punishbtn = Instance.new("TextButton")
  38. local kickbtn = Instance.new("TextButton")
  39. local banbtn = Instance.new("TextButton")
  40. local btlsbtn = Instance.new("TextButton")
  41. local minebtn = Instance.new("TextButton")
  42. local gunbtn = Instance.new("TextButton")
  43. local TextLabel = Instance.new("TextLabel")
  44. local nlmbsbtn = Instance.new("TextButton")
  45. --Properties:
  46. ScreenGui.Parent = game.CoreGui
  47. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  48.  
  49. Frame.Parent = ScreenGui
  50. Frame.Active = true
  51. Frame.Draggable = true
  52. Frame.BackgroundColor3 = Color3.new(0.239216, 0.505882, 1)
  53. Frame.BackgroundTransparency = 0.6
  54. Frame.BorderSizePixel = 3
  55. Frame.Position = UDim2.new(0.284962386, 0, 0.290381104, 0)
  56. Frame.Size = UDim2.new(0, 299, 0, 317)
  57.  
  58. TextBox.Parent = Frame
  59. TextBox.BackgroundColor3 = Color3.new(1, 1, 1)
  60. TextBox.BackgroundTransparency = 0.40000000596046
  61. TextBox.Position = UDim2.new(0.101983935, 0, 0.102293611, 0)
  62. TextBox.Size = UDim2.new(0, 236, 0, 36)
  63. TextBox.Font = Enum.Font.SourceSans
  64. TextBox.Text = ""
  65. TextBox.TextColor3 = Color3.new(0, 0, 0)
  66. TextBox.TextSize = 14
  67.  
  68. killbtn.Name = "killbtn"
  69. killbtn.Parent = Frame
  70. killbtn.BackgroundColor3 = Color3.new(1, 1, 1)
  71. killbtn.BackgroundTransparency = 0.40000000596046
  72. killbtn.Position = UDim2.new(0.0374149643, 0, 0.25294295, 0)
  73. killbtn.Size = UDim2.new(0, 126, 0, 33)
  74. killbtn.Font = Enum.Font.SourceSans
  75. killbtn.Text = "Kill"
  76. killbtn.TextColor3 = Color3.new(0, 0, 0)
  77. killbtn.TextScaled = true
  78. killbtn.TextSize = 14
  79. killbtn.TextWrapped = true
  80.  
  81. ragdollbtn.Name = "ragdollbtn"
  82. ragdollbtn.Parent = Frame
  83. ragdollbtn.BackgroundColor3 = Color3.new(1, 1, 1)
  84. ragdollbtn.BackgroundTransparency = 0.40000000596046
  85. ragdollbtn.Position = UDim2.new(0.506802738, 0, 0.25294295, 0)
  86. ragdollbtn.Size = UDim2.new(0, 126, 0, 33)
  87. ragdollbtn.Font = Enum.Font.SourceSans
  88. ragdollbtn.Text = "Ragdoll"
  89. ragdollbtn.TextColor3 = Color3.new(0, 0, 0)
  90. ragdollbtn.TextScaled = true
  91. ragdollbtn.TextSize = 14
  92. ragdollbtn.TextWrapped = true
  93.  
  94. nkdbtn.Name = "nkdbtn"
  95. nkdbtn.Parent = Frame
  96. nkdbtn.BackgroundColor3 = Color3.new(1, 1, 1)
  97. nkdbtn.BackgroundTransparency = 0.40000000596046
  98. nkdbtn.Position = UDim2.new(0.037414968, 0, 0.404260665, 0)
  99. nkdbtn.Size = UDim2.new(0, 126, 0, 33)
  100. nkdbtn.Font = Enum.Font.SourceSans
  101. nkdbtn.Text = "Naked"
  102. nkdbtn.TextColor3 = Color3.new(0, 0, 0)
  103. nkdbtn.TextScaled = true
  104. nkdbtn.TextSize = 14
  105. nkdbtn.TextWrapped = true
  106.  
  107. punishbtn.Name = "punishbtn"
  108. punishbtn.Parent = Frame
  109. punishbtn.BackgroundColor3 = Color3.new(1, 1, 1)
  110. punishbtn.BackgroundTransparency = 0.40000000596046
  111. punishbtn.Position = UDim2.new(0.506802738, 0, 0.404260665, 0)
  112. punishbtn.Size = UDim2.new(0, 126, 0, 33)
  113. punishbtn.Font = Enum.Font.SourceSans
  114. punishbtn.Text = "Punish"
  115. punishbtn.TextColor3 = Color3.new(0, 0, 0)
  116. punishbtn.TextScaled = true
  117. punishbtn.TextSize = 14
  118. punishbtn.TextWrapped = true
  119.  
  120. kickbtn.Name = "kickbtn"
  121. kickbtn.Parent = Frame
  122. kickbtn.BackgroundColor3 = Color3.new(1, 1, 1)
  123. kickbtn.BackgroundTransparency = 0.40000000596046
  124. kickbtn.Position = UDim2.new(0.037414968, 0, 0.544862092, 0)
  125. kickbtn.Size = UDim2.new(0, 126, 0, 33)
  126. kickbtn.Font = Enum.Font.SourceSans
  127. kickbtn.Text = "Kick"
  128. kickbtn.TextColor3 = Color3.new(0, 0, 0)
  129. kickbtn.TextScaled = true
  130. kickbtn.TextSize = 14
  131. kickbtn.TextWrapped = true
  132.  
  133. banbtn.Name = "banbtn"
  134. banbtn.Parent = Frame
  135. banbtn.BackgroundColor3 = Color3.new(1, 1, 1)
  136. banbtn.BackgroundTransparency = 0.40000000596046
  137. banbtn.Position = UDim2.new(0.506802738, 0, 0.544862151, 0)
  138. banbtn.Size = UDim2.new(0, 126, 0, 33)
  139. banbtn.Font = Enum.Font.SourceSans
  140. banbtn.Text = "Ban"
  141. banbtn.TextColor3 = Color3.new(0, 0, 0)
  142. banbtn.TextScaled = true
  143. banbtn.TextSize = 14
  144. banbtn.TextWrapped = true
  145.  
  146. btlsbtn.Name = "btlsbtn"
  147. btlsbtn.Parent = Frame
  148. btlsbtn.BackgroundColor3 = Color3.new(1, 1, 1)
  149. btlsbtn.BackgroundTransparency = 0.40000000596046
  150. btlsbtn.Position = UDim2.new(0.0352308452, 0, 0.679365039, 0)
  151. btlsbtn.Size = UDim2.new(0, 126, 0, 33)
  152. btlsbtn.Font = Enum.Font.SourceSans
  153. btlsbtn.Text = "btools"
  154. btlsbtn.TextColor3 = Color3.new(0, 0, 0)
  155. btlsbtn.TextScaled = true
  156. btlsbtn.TextSize = 14
  157. btlsbtn.TextWrapped = true
  158.  
  159. minebtn.Name = "minebtn"
  160. minebtn.Parent = Frame
  161. minebtn.BackgroundColor3 = Color3.new(1, 1, 1)
  162. minebtn.BackgroundTransparency = 0.40000000596046
  163. minebtn.Position = UDim2.new(0.506802738, 0, 0.828487813, 0)
  164. minebtn.Size = UDim2.new(0, 126, 0, 33)
  165. minebtn.Font = Enum.Font.SourceSans
  166. minebtn.Text = "Mine (C4)"
  167. minebtn.TextColor3 = Color3.new(0, 0, 0)
  168. minebtn.TextScaled = true
  169. minebtn.TextSize = 14
  170. minebtn.TextWrapped = true
  171.  
  172. gunbtn.Name = "gunbtn"
  173. gunbtn.Parent = Frame
  174. gunbtn.BackgroundColor3 = Color3.new(1, 1, 1)
  175. gunbtn.BackgroundTransparency = 0.40000000596046
  176. gunbtn.Position = UDim2.new(0.0352308452, 0, 0.828487873, 0)
  177. gunbtn.Size = UDim2.new(0, 126, 0, 33)
  178. gunbtn.Font = Enum.Font.SourceSans
  179. gunbtn.Text = "Tommy Gun"
  180. gunbtn.TextColor3 = Color3.new(0, 0, 0)
  181. gunbtn.TextScaled = true
  182. gunbtn.TextSize = 14
  183. gunbtn.TextWrapped = true
  184.  
  185. TextLabel.Parent = Frame
  186. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  187. TextLabel.BackgroundTransparency = 0.40000000596046
  188. TextLabel.Size = UDim2.new(0, 298, 0, 21)
  189. TextLabel.Font = Enum.Font.SourceSans
  190. TextLabel.Text = "2 Player Super Hero Tycoon GUI - ScriptX#3145"
  191. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  192. TextLabel.TextScaled = true
  193. TextLabel.TextSize = 14
  194. TextLabel.TextWrapped = true
  195.  
  196. nlmbsbtn.Name = "nlmbsbtn"
  197. nlmbsbtn.Parent = Frame
  198. nlmbsbtn.BackgroundColor3 = Color3.new(1, 1, 1)
  199. nlmbsbtn.BackgroundTransparency = 0.40000000596046
  200. nlmbsbtn.Position = UDim2.new(0.506802738, 0, 0.679365039, 0)
  201. nlmbsbtn.Size = UDim2.new(0, 126, 0, 33)
  202. nlmbsbtn.Font = Enum.Font.SourceSans
  203. nlmbsbtn.Text = "NoLimbs"
  204. nlmbsbtn.TextColor3 = Color3.new(0, 0, 0)
  205. nlmbsbtn.TextScaled = true
  206. nlmbsbtn.TextSize = 14
  207. nlmbsbtn.TextWrapped = true
  208. -- Scripts:
  209. function SCRIPT_JDNF69_FAKESCRIPT() -- killbtn.LocalScript
  210. local script = Instance.new('LocalScript')
  211. script.Parent = killbtn
  212. script.Parent.MouseButton1Click:Connect(function()
  213.  
  214. local targets = GetPlayer(script.Parent.Parent.TextBox.Text)
  215.  
  216. for i,v in pairs(targets)do
  217. spawn(function()
  218.  
  219. game.ReplicatedStorage.events.destroyObject:FireServer(game.Players[v].Character.Torso.Neck)
  220.  
  221. end)
  222. end
  223.  
  224. end)
  225.  
  226. end
  227. coroutine.resume(coroutine.create(SCRIPT_JDNF69_FAKESCRIPT))
  228. function SCRIPT_KFFS86_FAKESCRIPT() -- ragdollbtn.LocalScript
  229. local script = Instance.new('LocalScript')
  230. script.Parent = ragdollbtn
  231. script.Parent.MouseButton1Click:Connect(function()
  232.  
  233. local targets = GetPlayer(script.Parent.Parent.TextBox.Text)
  234.  
  235. for i,v in pairs(targets)do
  236. spawn(function()
  237.  
  238. game.ReplicatedStorage.events.destroyObject:FireServer(game.Players[v].Character.Humanoid)
  239.  
  240. end)
  241. end
  242.  
  243. end)
  244.  
  245. end
  246. coroutine.resume(coroutine.create(SCRIPT_KFFS86_FAKESCRIPT))
  247. function SCRIPT_LCJY70_FAKESCRIPT() -- nkdbtn.LocalScript
  248. local script = Instance.new('LocalScript')
  249. script.Parent = nkdbtn
  250. script.Parent.MouseButton1Click:Connect(function()
  251.  
  252. local targets = GetPlayer(script.Parent.Parent.TextBox.Text)
  253.  
  254. for i,v in pairs(targets)do
  255. spawn(function()
  256. for i,val in pairs(game.Players[v].Character:GetChildren()) do
  257. if val.ClassName == "Shirt" or val.ClassName == "Pants" or val.ClassName == "ShirtGraphic" then
  258. game.ReplicatedStorage.events.destroyObject:FireServer(val)
  259. end
  260. end
  261. end)
  262. end
  263.  
  264. end)
  265.  
  266. end
  267. coroutine.resume(coroutine.create(SCRIPT_LCJY70_FAKESCRIPT))
  268. function SCRIPT_ZKXC85_FAKESCRIPT() -- punishbtn.LocalScript
  269. local script = Instance.new('LocalScript')
  270. script.Parent = punishbtn
  271. script.Parent.MouseButton1Click:Connect(function()
  272.  
  273. local targets = GetPlayer(script.Parent.Parent.TextBox.Text)
  274.  
  275. for i,v in pairs(targets)do
  276. spawn(function()
  277.  
  278. game.ReplicatedStorage.events.destroyObject:FireServer(game.Players[v].Character)
  279.  
  280. end)
  281. end
  282.  
  283. end)
  284.  
  285. end
  286. coroutine.resume(coroutine.create(SCRIPT_ZKXC85_FAKESCRIPT))
  287. function SCRIPT_ADRT82_FAKESCRIPT() -- kickbtn.LocalScript
  288. local script = Instance.new('LocalScript')
  289. script.Parent = kickbtn
  290. script.Parent.MouseButton1Click:Connect(function()
  291.  
  292. local targets = GetPlayer(script.Parent.Parent.TextBox.Text)
  293.  
  294. for i,v in pairs(targets)do
  295. spawn(function()
  296.  
  297. game.ReplicatedStorage.events.destroyObject:FireServer(game.Players[v])
  298.  
  299. end)
  300. end
  301.  
  302. end)
  303.  
  304. end
  305. coroutine.resume(coroutine.create(SCRIPT_ADRT82_FAKESCRIPT))
  306. function SCRIPT_VNYD81_FAKESCRIPT() -- banbtn.LocalScript
  307. local script = Instance.new('LocalScript')
  308. script.Parent = banbtn
  309. script.Parent.MouseButton1Click:Connect(function()
  310.  
  311. local targets = GetPlayer(script.Parent.Parent.TextBox.Text)
  312.  
  313. for i,v in pairs(targets)do
  314. spawn(function()
  315. while wait() do
  316. if game.Players:FindFirstChild(v) then
  317. game.ReplicatedStorage.events.destroyObject:FireServer(game.Players[v])
  318. end
  319. end
  320. end)
  321. end
  322.  
  323. end)
  324.  
  325. end
  326. coroutine.resume(coroutine.create(SCRIPT_VNYD81_FAKESCRIPT))
  327. function SCRIPT_IIVV87_FAKESCRIPT() -- btlsbtn.LocalScript
  328. local script = Instance.new('LocalScript')
  329. script.Parent = btlsbtn
  330. script.Parent.MouseButton1Click:Connect(function()
  331.  
  332. spawn(function()
  333.  
  334. spawn(function()
  335. game.StarterGui:SetCoreGuiEnabled(2, true)
  336. end)
  337.  
  338. local loltool = Instance.new("Tool", game.Players.LocalPlayer.Backpack)
  339.  
  340. loltool.RequiresHandle = false
  341. loltool.Name = "Click Delete"
  342. loltool.ToolTip = "Click Delete"
  343. mouse = game.Players.LocalPlayer:GetMouse()
  344.  
  345. loltool.Activated:Connect(function()
  346. obj = mouse.Target
  347. game.ReplicatedStorage.events.destroyObject:FireServer(obj)
  348. end)
  349.  
  350. end)
  351.  
  352. end)
  353.  
  354. end
  355. coroutine.resume(coroutine.create(SCRIPT_IIVV87_FAKESCRIPT))
  356. function SCRIPT_LORU81_FAKESCRIPT() -- minebtn.LocalScript
  357. local script = Instance.new('LocalScript')
  358. script.Parent = minebtn
  359. script.Parent.MouseButton1Click:Connect(function()
  360.  
  361. spawn(function()
  362.  
  363. game.ReplicatedStorage.Events.CrateClaim:FireServer("Gear",game.ReplicatedStorage.BoxItems["Mine"])
  364.  
  365. end)
  366.  
  367.  
  368. end)
  369.  
  370. end
  371. coroutine.resume(coroutine.create(SCRIPT_LORU81_FAKESCRIPT))
  372. function SCRIPT_FACF69_FAKESCRIPT() -- gunbtn.LocalScript
  373. local script = Instance.new('LocalScript')
  374. script.Parent = gunbtn
  375. script.Parent.MouseButton1Click:Connect(function()
  376.  
  377. spawn(function()
  378.  
  379. game.ReplicatedStorage.Events.CrateClaim:FireServer("Gear",game.ReplicatedStorage.BoxItems["TommyGun"])
  380.  
  381. end)
  382.  
  383. end)
  384.  
  385. end
  386. coroutine.resume(coroutine.create(SCRIPT_FACF69_FAKESCRIPT))
  387. function SCRIPT_WRXV75_FAKESCRIPT() -- nlmbsbtn.LocalScript
  388. local script = Instance.new('LocalScript')
  389. script.Parent = nlmbsbtn
  390. script.Parent.MouseButton1Click:Connect(function()
  391.  
  392. local targets = GetPlayer(script.Parent.Parent.TextBox.Text)
  393.  
  394. for i,v in pairs(targets)do
  395. spawn(function()
  396. for i,val in pairs(game.Players[v].Character:GetChildren()) do
  397. if val.Name == "Right Arm" or val.Name == "Left Arm" or val.Name == "Right Leg" or val.Name == "Left Leg" then
  398. game.ReplicatedStorage.events.destroyObject:FireServer(val)
  399. end
  400. end
  401. end)
  402. end
  403.  
  404. end)
  405.  
  406. end
  407. coroutine.resume(coroutine.create(SCRIPT_WRXV75_FAKESCRIPT))
  408.  
  409.  
  410. spawn(function()
  411.  
  412. local function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  413.  
  414. local counter = 0
  415. wait()
  416.  
  417. spawn(function()
  418.  
  419. while wait() do
  420. Frame.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  421.  
  422. counter = counter + 0.0076
  423.  
  424. end
  425. end)
  426. end)
Add Comment
Please, Sign In to add comment