Advertisement
jack0159

🎃4X XP!🎃 Ro Hero Academia

Nov 20th, 2018
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.21 KB | None | 0 0
  1. game:GetService("StarterGui"):SetCore("SendNotification", {Title = "DarkDevs.Pro", Text = "Created By FunTrat0r"})
  2.  
  3. local uc = Instance.new("ScreenGui")
  4. local main = Instance.new("Frame")
  5. local heal = Instance.new("TextButton")
  6. local punch = Instance.new("TextButton")
  7. local stats = Instance.new("TextButton")
  8. local quests = Instance.new("TextButton")
  9. local TextLabel = Instance.new("TextLabel")
  10. local statsframe = Instance.new("Frame")
  11. local melee = Instance.new("TextButton")
  12. local quirk = Instance.new("TextButton")
  13. local random = Instance.new("TextButton")
  14. local questframe = Instance.new("Frame")
  15. local dumm = Instance.new("TextButton")
  16. local thugs = Instance.new("TextButton")
  17. local sthug = Instance.new("TextButton")
  18. local enhancedtxt = Instance.new("TextLabel")
  19.  
  20. uc.Name = "uc"
  21. uc.Parent = game.CoreGui
  22.  
  23. main.Name = "main"
  24. main.Parent = uc
  25. main.Active = true
  26. main.BackgroundColor3 = Color3.new(0.141176, 0.141176, 0.141176)
  27. main.BorderSizePixel = 0
  28. main.Position = UDim2.new(0.139835969, 0, 0.239700377, 0)
  29. main.Size = UDim2.new(0, 12, 0, 118)
  30. main.Draggable = true
  31.  
  32. heal.Name = "heal"
  33. heal.Parent = main
  34. heal.BackgroundColor3 = Color3.new(0.141176, 0.141176, 0.141176)
  35. heal.BackgroundTransparency = 0.20000000298023
  36. heal.BorderSizePixel = 0
  37. heal.Position = UDim2.new(1.66666663, 0, -0.00559294224, 0)
  38. heal.Size = UDim2.new(0, 92, 0, 15)
  39. heal.Font = Enum.Font.Fantasy
  40. heal.Text = "Healing"
  41. heal.TextColor3 = Color3.new(1, 1, 1)
  42. heal.TextSize = 14
  43. heal.MouseButton1Down:connect(function()
  44. while true do
  45. wait()
  46. local Event = game:GetService("ReplicatedStorage").Remotes.Regenerate
  47. Event:FireServer()
  48. end
  49. end)
  50.  
  51. punch.Name = "punch"
  52. punch.Parent = main
  53. punch.BackgroundColor3 = Color3.new(0.141176, 0.141176, 0.141176)
  54. punch.BackgroundTransparency = 0.20000000298023
  55. punch.BorderSizePixel = 0
  56. punch.Position = UDim2.new(1.66666663, 0, 0.194154322, 0)
  57. punch.Size = UDim2.new(0, 92, 0, 15)
  58. punch.Font = Enum.Font.Fantasy
  59. punch.Text = "Punch"
  60. punch.TextColor3 = Color3.new(1, 1, 1)
  61. punch.TextSize = 14
  62. punch.MouseButton1Down:connect(function()
  63. while true do
  64. wait()
  65. local Event = game:GetService("ReplicatedStorage").PunchEvent
  66. Event:FireServer()
  67. end
  68. end)
  69.  
  70. stats.Name = "stats"
  71. stats.Parent = main
  72. stats.BackgroundColor3 = Color3.new(0.141176, 0.141176, 0.141176)
  73. stats.BackgroundTransparency = 0.20000000298023
  74. stats.BorderSizePixel = 0
  75. stats.Position = UDim2.new(1.66666663, 0, 0.378857225, 0)
  76. stats.Size = UDim2.new(0, 92, 0, 15)
  77. stats.Font = Enum.Font.Fantasy
  78. stats.Text = "Stats"
  79. stats.TextColor3 = Color3.new(1, 1, 1)
  80. stats.TextSize = 14
  81. stats.MouseButton1Down:connect(function()
  82. if statsframe.Visible == false then
  83.  
  84. statsframe.Visible = true else
  85. statsframe.Visible = false
  86. end
  87.  
  88. end)
  89.  
  90. quests.Name = "quests"
  91. quests.Parent = main
  92. quests.BackgroundColor3 = Color3.new(0.141176, 0.141176, 0.141176)
  93. quests.BackgroundTransparency = 0.20000000298023
  94. quests.BorderSizePixel = 0
  95. quests.Position = UDim2.new(1.66666663, 0, 0.571355224, 0)
  96. quests.Size = UDim2.new(0, 92, 0, 14)
  97. quests.Font = Enum.Font.Fantasy
  98. quests.Text = "Quests"
  99. quests.TextColor3 = Color3.new(1, 1, 1)
  100. quests.TextSize = 14
  101. quests.MouseButton1Down:connect(function()
  102. if questframe.Visible == false then
  103.  
  104. questframe.Visible = true else
  105. questframe.Visible = false
  106. end
  107. end)
  108.  
  109. TextLabel.Parent = main
  110. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  111. TextLabel.BackgroundTransparency = 1
  112. TextLabel.Position = UDim2.new(1.66666663, 0, 0.942857146, 0)
  113. TextLabel.Size = UDim2.new(0, 92, 0, 10)
  114. TextLabel.Font = Enum.Font.Fantasy
  115. TextLabel.Text = "DarkDevs.Pro"
  116. TextLabel.TextColor3 = Color3.new(0.258824, 1, 0.054902)
  117. TextLabel.TextSize = 14
  118.  
  119. statsframe.Name = "statsframe"
  120. statsframe.Parent = main
  121. statsframe.BackgroundColor3 = Color3.new(0.0117647, 0.0117647, 0.0117647)
  122. statsframe.Position = UDim2.new(10.0833349, 0, 0.378857255, 0)
  123. statsframe.Size = UDim2.new(0, 1, 0, 15)
  124. statsframe.Visible = false
  125.  
  126. melee.Name = "melee"
  127. melee.Parent = statsframe
  128. melee.BackgroundColor3 = Color3.new(0.141176, 0.141176, 0.141176)
  129. melee.BackgroundTransparency = 0.20000000298023
  130. melee.BorderSizePixel = 0
  131. melee.Position = UDim2.new(14.6666565, 0, 0.154284671, 0)
  132. melee.Size = UDim2.new(0, 85, 0, 12)
  133. melee.Font = Enum.Font.Fantasy
  134. melee.Text = "Melee Add+"
  135. melee.TextColor3 = Color3.new(1, 1, 1)
  136. melee.TextSize = 12
  137. melee.MouseButton1Down:connect(function()
  138. while true do
  139. wait(0.2)
  140. local Event = game:GetService("ReplicatedStorage").Remotes.Stats.MeleeStat
  141. Event:FireServer()
  142. end
  143. end)
  144.  
  145. quirk.Name = "quirk"
  146. quirk.Parent = statsframe
  147. quirk.BackgroundColor3 = Color3.new(0.141176, 0.141176, 0.141176)
  148. quirk.BackgroundTransparency = 0.20000000298023
  149. quirk.BorderSizePixel = 0
  150. quirk.Position = UDim2.new(14.6666565, 0, 1.46047163, 0)
  151. quirk.Size = UDim2.new(0, 85, 0, 12)
  152. quirk.Font = Enum.Font.Fantasy
  153. quirk.Text = "Quirk Add+"
  154. quirk.TextColor3 = Color3.new(1, 1, 1)
  155. quirk.TextSize = 12
  156. quirk.MouseButton1Down:connect(function()
  157. while true do
  158. wait(0.2)
  159. local Event = game:GetService("ReplicatedStorage").Remotes.Stats.QuirkStat
  160. Event:FireServer()
  161. end
  162. end)
  163.  
  164. random.Name = "random"
  165. random.Parent = main
  166. random.BackgroundColor3 = Color3.new(0.141176, 0.141176, 0.141176)
  167. random.BackgroundTransparency = 0.20000000298023
  168. random.BorderSizePixel = 0
  169. random.Position = UDim2.new(1.66666663, 0, 0.74552995, 0)
  170. random.Size = UDim2.new(0, 92, 0, 15)
  171. random.Font = Enum.Font.Fantasy
  172. random.Text = "Random Farm"
  173. random.TextColor3 = Color3.new(1, 1, 1)
  174. random.TextSize = 14
  175. random.MouseButton1Down:connect(function()
  176. while true do
  177. wait(0.5)
  178. local plr = game.Players.LocalPlayer.Character.HumanoidRootPart
  179. for i,v in pairs(game.Workspace:GetDescendants()) do
  180. if v:FindFirstChild 'Ultra-Fabulous Hair Brown' and v:FindFirstChild 'XP And Yen And Quest Stuff' then
  181. for _, f in pairs(v:GetDescendants()) do
  182. if f.name == "UpperTorso" then
  183. plr.CFrame = f.CFrame + Vector3.new((-2))
  184. end
  185. end
  186. end
  187. end
  188. end
  189. end)
  190.  
  191. questframe.Name = "questframe"
  192. questframe.Parent = main
  193. questframe.BackgroundColor3 = Color3.new(0.0117647, 0.0117647, 0.0117647)
  194. questframe.Position = UDim2.new(10.000001, 0, 0.571355283, 0)
  195. questframe.Size = UDim2.new(0, 2, 0, 14)
  196. questframe.Visible = false
  197.  
  198. dumm.Name = "dumm"
  199. dumm.Parent = questframe
  200. dumm.BackgroundColor3 = Color3.new(0.141176, 0.141176, 0.141176)
  201. dumm.BackgroundTransparency = 0.20000000298023
  202. dumm.BorderSizePixel = 0
  203. dumm.Position = UDim2.new(7.66665649, 0, -0.0523812436, 0)
  204. dumm.Size = UDim2.new(0, 64, 0, 14)
  205. dumm.Font = Enum.Font.Fantasy
  206. dumm.Text = "Dummy"
  207. dumm.TextColor3 = Color3.new(1, 1, 1)
  208. dumm.TextSize = 14
  209. dumm.MouseButton1Down:connect(function()
  210. while true do
  211. wait(0.0001)
  212. local plr = game.Workspace[game.Players.LocalPlayer.Name].HumanoidRootPart
  213. for i,v in pairs(game.Workspace["Quest #0.5"]:GetChildren()) do
  214. if v.Name == "QuestPart" then
  215. v.CFrame = plr.CFrame
  216. end
  217. end
  218. wait(0.0002)
  219. local plr = game.Workspace[game.Players.LocalPlayer.Name].HumanoidRootPart
  220. for i,v in pairs(game.Workspace:GetChildren()) do
  221. if v.Name == "Dummy" then
  222. plr.CFrame = v.HumanoidRootPart.CFrame
  223. end
  224. end
  225. wait(0.0003)
  226. local plr = game.Workspace[game.Players.LocalPlayer.Name].HumanoidRootPart
  227. for i,v in pairs(game.Workspace:GetChildren()) do
  228. if v.Name == "Dummy1" then
  229. plr.CFrame = v.UpperTorso.CFrame
  230. end
  231. end
  232. wait(0.0004)
  233. local plr = game.Workspace[game.Players.LocalPlayer.Name].HumanoidRootPart
  234. for i,v in pairs(game.Workspace:GetChildren()) do
  235. if v.Name == "Dummy2" then
  236. plr.CFrame = v.UpperTorso.CFrame
  237. end
  238. end
  239. wait(0.0005)
  240. local plr = game.Workspace[game.Players.LocalPlayer.Name].HumanoidRootPart
  241. for i,v in pairs(game.Workspace:GetChildren()) do
  242. if v.Name == "Dummy3" then
  243. plr.CFrame = v.UpperTorso.CFrame
  244. end
  245. end
  246. end
  247. end)
  248.  
  249. thugs.Name = "thugs"
  250. thugs.Parent = questframe
  251. thugs.BackgroundColor3 = Color3.new(0.141176, 0.141176, 0.141176)
  252. thugs.BackgroundTransparency = 0.20000000298023
  253. thugs.BorderSizePixel = 0
  254. thugs.Position = UDim2.new(43.6666565, 0, -0.0523812436, 0)
  255. thugs.Size = UDim2.new(0, 63, 0, 14)
  256. thugs.Font = Enum.Font.Fantasy
  257. thugs.Text = "Thugs"
  258. thugs.TextColor3 = Color3.new(1, 1, 1)
  259. thugs.TextSize = 14
  260. thugs.MouseButton1Down:connect(function()
  261. while true do
  262. wait(0.0001)
  263. local plr = game.Workspace[game.Players.LocalPlayer.Name].HumanoidRootPart
  264. for i,v in pairs(game.Workspace["Quest #2"]:GetChildren()) do
  265. if v.Name == "QuestPart" then
  266. v.CFrame = plr.CFrame
  267. end
  268. end
  269. wait(0.0002)
  270. local plr = game.Workspace[game.Players.LocalPlayer.Name].HumanoidRootPart
  271. for i,v in pairs(game.Workspace:GetChildren()) do
  272. if v.Name == "Thug3" then
  273. plr.CFrame = v.HumanoidRootPart.CFrame
  274. end
  275. end
  276. wait(0.0003)
  277. local plr = game.Workspace[game.Players.LocalPlayer.Name].HumanoidRootPart
  278. for i,v in pairs(game.Workspace:GetChildren()) do
  279. if v.Name == "Thug33" then
  280. plr.CFrame = v.UpperTorso.CFrame
  281. end
  282. end
  283. wait(0.0004)
  284. local plr = game.Workspace[game.Players.LocalPlayer.Name].HumanoidRootPart
  285. for i,v in pairs(game.Workspace:GetChildren()) do
  286. if v.Name == "Thug333" then
  287. plr.CFrame = v.UpperTorso.CFrame
  288. end
  289. end
  290. wait(0.0005)
  291. local plr = game.Workspace[game.Players.LocalPlayer.Name].HumanoidRootPart
  292. for i,v in pairs(game.Workspace:GetChildren()) do
  293. if v.Name == "Thug" then
  294. plr.CFrame = v.UpperTorso.CFrame
  295. end
  296. end
  297. end
  298. end)
  299.  
  300. sthug.Name = "sthug"
  301. sthug.Parent = questframe
  302. sthug.BackgroundColor3 = Color3.new(0.141176, 0.141176, 0.141176)
  303. sthug.BackgroundTransparency = 0.20000000298023
  304. sthug.BorderSizePixel = 0
  305. sthug.Position = UDim2.new(8.66665649, 0, 1.44761872, 0)
  306. sthug.Size = UDim2.new(0, 63, 0, 14)
  307. sthug.Font = Enum.Font.Fantasy
  308. sthug.Text = "SThugs"
  309. sthug.TextColor3 = Color3.new(1, 1, 1)
  310. sthug.TextSize = 14
  311. sthug.MouseButton1Down:connect(function()
  312. while true do
  313. wait(0.0001)
  314. local plr = game.Workspace[game.Players.LocalPlayer.Name].HumanoidRootPart
  315. for i,v in pairs(game.Workspace["Quest #3"]:GetChildren()) do
  316. if v.Name == "QuestPart" then
  317. v.CFrame = plr.CFrame
  318. end
  319. end
  320. wait(0.0002)
  321. local plr = game.Workspace[game.Players.LocalPlayer.Name].HumanoidRootPart
  322. for i,v in pairs(game.Workspace:GetChildren()) do
  323. if v.Name == "SThug3" then
  324. plr.CFrame = v.HumanoidRootPart.CFrame
  325. end
  326. end
  327. wait(0.0003)
  328. local plr = game.Workspace[game.Players.LocalPlayer.Name].HumanoidRootPart
  329. for i,v in pairs(game.Workspace:GetChildren()) do
  330. if v.Name == "SThug2" then
  331. plr.CFrame = v.UpperTorso.CFrame
  332. end
  333. end
  334. wait(0.0004)
  335. local plr = game.Workspace[game.Players.LocalPlayer.Name].HumanoidRootPart
  336. for i,v in pairs(game.Workspace:GetChildren()) do
  337. if v.Name == "SThug333" then
  338. plr.CFrame = v.UpperTorso.CFrame
  339. end
  340. end
  341. wait(0.0005)
  342. local plr = game.Workspace[game.Players.LocalPlayer.Name].HumanoidRootPart
  343. for i,v in pairs(game.Workspace:GetChildren()) do
  344. if v.Name == "SThug4" then
  345. plr.CFrame = v.UpperTorso.CFrame
  346. end
  347. end
  348. end
  349. end)
  350.  
  351. enhancedtxt.Name = "enhancedtxt"
  352. enhancedtxt.Parent = main
  353. enhancedtxt.BackgroundColor3 = Color3.new(161, 0, 2)
  354. enhancedtxt.BackgroundTransparency = 1
  355. enhancedtxt.BorderSizePixel = 0
  356. enhancedtxt.Position = UDim2.new(-12.417, 0,3.378, 0)
  357. enhancedtxt.Size = UDim2.new(0, 203, 0, 23)
  358. enhancedtxt.Font = Enum.Font.Fantasy
  359. enhancedtxt.Text = "Enhanced By FunTrat0r#0020"
  360. enhancedtxt.TextColor3 = Color3.new(161, 0, 2)
  361. enhancedtxt.TextSize = 14
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement