Advertisement
FilterYT

Untitled

Apr 15th, 2019
11,902
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.38 KB | None | 0 0
  1. local GuiService = Instance.new('ScreenGui')
  2. local Menu = Instance.new('TextButton')
  3. local Chat = Instance.new('Frame')
  4. local MenuBG = Instance.new('ImageLabel')
  5. local Close = Instance.new('TextButton')
  6. local SetBounty = Instance.new('TextButton')
  7. local Namee = Instance.new('TextBox')
  8. local DeleteEnvironment = Instance.new('TextButton')
  9. local FullEXP = Instance.new('TextButton')
  10. local InfiniteAurem = Instance.new('TextButton')
  11. local InfiniteLamina = Instance.new('TextButton')
  12. local Namee_2 = Instance.new('TextBox')
  13. local Legendary = Instance.new('TextButton')
  14. local Namee_3 = Instance.new('TextBox')
  15. local Level = Instance.new('TextButton')
  16. local TextLabel = Instance.new('TextLabel')
  17. local Namee_4 = Instance.new('TextBox')
  18. local Nowipe = Instance.new('TextButton')
  19. local Regenerate = Instance.new('TextButton')
  20. local SetMagic = Instance.new('TextButton')
  21. local Namee_5 = Instance.new('TextBox')
  22. local SkillPoints = Instance.new('TextButton')
  23. local Namee_6 = Instance.new('TextBox')
  24. local SetSecondMagic = Instance.new('TextButton')
  25. local Namee_7 = Instance.new('TextBox')
  26. --
  27.  
  28. GuiService.Name = 'Gui Service'
  29. GuiService.Parent = game.CoreGui
  30.  
  31. Menu.Name = 'Menu'
  32. Menu.Parent = GuiService
  33. Menu.BackgroundColor3 = Color3.new(0, 0.188235, 0.27451)
  34. Menu.BackgroundTransparency = 0.5
  35. Menu.BorderSizePixel = 0
  36. Menu.Position = UDim2.new(0, 323, 0, 0)
  37. Menu.Size = UDim2.new(0, 60, 0, 20)
  38. Menu.Font = Enum.Font.SourceSansBold
  39. Menu.FontSize = Enum.FontSize.Size18
  40. Menu.Text = 'Menu'
  41. Menu.TextColor3 = Color3.new(1, 1, 1)
  42. Open = false
  43.  
  44. Chat.Name = 'Chat'
  45. Chat.Parent = GuiService
  46. Chat.Active = true
  47. Chat.BackgroundColor3 = Color3.new(1, 1, 1)
  48. Chat.BackgroundTransparency = 1
  49. Chat.Draggable = true
  50. Chat.Position = UDim2.new(0, 361, 0, 151)
  51. Chat.Selectable = true
  52. Chat.Size = UDim2.new(0, 537, 0, 56)
  53. Chat.Visible = false
  54.  
  55. MenuBG.Name = 'MenuBG'
  56. MenuBG.Parent = Chat
  57. MenuBG.BackgroundColor3 = Color3.new(1, 1, 1)
  58. MenuBG.BackgroundTransparency = 1
  59. MenuBG.Size = UDim2.new(0, 593, 0, 361)
  60. MenuBG.Image = 'rbxassetid://491261712'
  61. MenuBG.ImageTransparency = 0.10000000149012
  62.  
  63. Close.Name = 'Close'
  64. Close.Parent = Chat
  65. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  66. Close.BackgroundTransparency = 1
  67. Close.Position = UDim2.new(0, 537, 0, 28)
  68. Close.Size = UDim2.new(0, 40, 0, 28)
  69. Close.Font = Enum.Font.SourceSans
  70. Close.FontSize = Enum.FontSize.Size14
  71. Close.TextTransparency = 1
  72.  
  73. Close.MouseButton1Down:connect(function(open)
  74. Chat.Visible = false
  75. Open = false
  76. end)
  77.  
  78. Menu.MouseButton1Down:connect(function(open)
  79. if Open == false then
  80. Chat.Visible = true
  81. Open = true
  82. elseif Open == true then
  83. Chat.Visible = false
  84. Open = false
  85. end
  86. end)
  87. --
  88. SetBounty.Name = 'Set Bounty'
  89. SetBounty.Parent = Chat
  90. SetBounty.BackgroundColor3 = Color3.new(0, 1, 0.968628)
  91. SetBounty.BackgroundTransparency = 0.60000002384186
  92. SetBounty.BorderSizePixel = 0
  93. SetBounty.Position = UDim2.new(0, 180, 0, 75)
  94. SetBounty.Size = UDim2.new(0, 70, 0, 53)
  95. SetBounty.Font = Enum.Font.SourceSansLight
  96. SetBounty.FontSize = Enum.FontSize.Size18
  97. SetBounty.Text = 'Bounty'
  98. SetBounty.TextColor3 = Color3.new(1, 1, 1)
  99. SetBounty.TextStrokeColor3 = Color3.new(1, 1, 1)
  100.  
  101. Namee.Name = 'Namee'
  102. Namee.Parent = SetBounty
  103. Namee.BackgroundColor3 = Color3.new(0, 1, 0.968628)
  104. Namee.BackgroundTransparency = 0.60000002384186
  105. Namee.Position = UDim2.new(0, 0, 0, 55)
  106. Namee.Size = UDim2.new(0, 70, 0, 15)
  107. Namee.Font = Enum.Font.SourceSansLight
  108. Namee.FontSize = Enum.FontSize.Size14
  109. Namee.Text = '[Amount]'
  110. Namee.TextColor3 = Color3.new(1, 1, 1)
  111.  
  112. BountyA = Namee.Text
  113. SetBounty.MouseButton1Down:connect(function(open)
  114. BountyA = Namee.Text
  115. game.Workspace.Stats.SetStat:FireServer('Bounty', tonumber(BountyA) + 0, 'math.random() is the best thing ever')
  116. end)
  117.  
  118. --
  119.  
  120. DeleteEnvironment.Name = 'Delete Environment'
  121. DeleteEnvironment.Parent = Chat
  122. DeleteEnvironment.BackgroundColor3 = Color3.new(0, 1, 0.968628)
  123. DeleteEnvironment.BackgroundTransparency = 0.60000002384186
  124. DeleteEnvironment.BorderSizePixel = 0
  125. DeleteEnvironment.Position = UDim2.new(0, 20, 0, 75)
  126. DeleteEnvironment.Size = UDim2.new(0, 70, 0, 70)
  127. DeleteEnvironment.Font = Enum.Font.SourceSansLight
  128. DeleteEnvironment.FontSize = Enum.FontSize.Size12
  129. DeleteEnvironment.Text = 'No Environment'
  130. DeleteEnvironment.TextColor3 = Color3.new(1, 1, 1)
  131. DeleteEnvironment.TextStrokeColor3 = Color3.new(1, 1, 1)
  132.  
  133. DeleteEnvironment.MouseButton1Down:connect(function(open)
  134. game.Workspace.Environment:Remove()
  135. end)
  136. --
  137.  
  138. FullEXP.Name = 'Full EXP'
  139. FullEXP.Parent = Chat
  140. FullEXP.BackgroundColor3 = Color3.new(0, 1, 0.968628)
  141. FullEXP.BackgroundTransparency = 0.60000002384186
  142. FullEXP.BorderSizePixel = 0
  143. FullEXP.Position = UDim2.new(0, 100, 0, 75)
  144. FullEXP.Size = UDim2.new(0, 70, 0, 70)
  145. FullEXP.Font = Enum.Font.SourceSansLight
  146. FullEXP.FontSize = Enum.FontSize.Size14
  147. FullEXP.Text = 'Full EXP'
  148. FullEXP.TextColor3 = Color3.new(1, 1, 1)
  149. FullEXP.TextStrokeColor3 = Color3.new(1, 1, 1)
  150. FullEXP.MouseButton1Down:connect(function(open)
  151. while true do
  152. wait(5)
  153. game.Workspace.Stats.SetStat:FireServer('EXP', 99999, 'math.random() is the best thing ever')
  154. end
  155. end)
  156. --
  157.  
  158. InfiniteAurem.Name = 'Infinite Aurem'
  159. InfiniteAurem.Parent = Chat
  160. InfiniteAurem.BackgroundColor3 = Color3.new(0, 1, 0.968628)
  161. InfiniteAurem.BackgroundTransparency = 0.60000002384186
  162. InfiniteAurem.BorderSizePixel = 0
  163. InfiniteAurem.Position = UDim2.new(0, 340, 0, 75)
  164. InfiniteAurem.Size = UDim2.new(0, 70, 0, 70)
  165. InfiniteAurem.Font = Enum.Font.SourceSansLight
  166. InfiniteAurem.FontSize = Enum.FontSize.Size18
  167. InfiniteAurem.Text = 'Aurem'
  168. InfiniteAurem.TextColor3 = Color3.new(1, 1, 1)
  169. InfiniteAurem.TextStrokeColor3 = Color3.new(1, 1, 1)
  170. InfiniteAurem.MouseButton1Down:connect(function(open)
  171. while true do
  172. wait(0.1)
  173. game.Workspace.Stats.SetStat:FireServer('Aurem', 300, 'math.random() is the best thing ever')
  174. end
  175. end)
  176.  
  177. --
  178.  
  179. InfiniteLamina.Name = 'Infinite Lamina'
  180. InfiniteLamina.Parent = Chat
  181. InfiniteLamina.BackgroundColor3 = Color3.new(0, 1, 0.968628)
  182. InfiniteLamina.BackgroundTransparency = 0.60000002384186
  183. InfiniteLamina.BorderSizePixel = 0
  184. InfiniteLamina.Position = UDim2.new(0, 180, 0, 150)
  185. InfiniteLamina.Size = UDim2.new(0, 70, 0, 53)
  186. InfiniteLamina.Font = Enum.Font.SourceSansLight
  187. InfiniteLamina.FontSize = Enum.FontSize.Size14
  188. InfiniteLamina.Text = 'Lamina'
  189. InfiniteLamina.TextColor3 = Color3.new(1, 1, 1)
  190. InfiniteLamina.TextStrokeColor3 = Color3.new(1, 1, 1)
  191.  
  192. Namee_2.Name = 'Namee'
  193. Namee_2.Parent = InfiniteLamina
  194. Namee_2.BackgroundColor3 = Color3.new(0, 1, 0.968628)
  195. Namee_2.BackgroundTransparency = 0.60000002384186
  196. Namee_2.BorderSizePixel = 0
  197. Namee_2.Position = UDim2.new(0, 0, 0, 55)
  198. Namee_2.Size = UDim2.new(0, 70, 0, 15)
  199. Namee_2.Font = Enum.Font.SourceSansLight
  200. Namee_2.FontSize = Enum.FontSize.Size14
  201. Namee_2.Text = '[Amount]'
  202. Namee_2.TextColor3 = Color3.new(1, 1, 1)
  203.  
  204. LaminaA = Namee_2.Text
  205. InfiniteLamina.MouseButton1Down:connect(function(open)
  206. LaminaA = Namee_2.Text
  207. game.Workspace.Stats.SetStat:FireServer('Lamina', tonumber(LaminaA) + 0, 'math.random() is the best thing ever')
  208. end)
  209.  
  210. --
  211.  
  212. Legendary.Name = 'Legendary'
  213. Legendary.Parent = Chat
  214. Legendary.BackgroundColor3 = Color3.new(0, 1, 0.968628)
  215. Legendary.BackgroundTransparency = 0.60000002384186
  216. Legendary.BorderSizePixel = 0
  217. Legendary.Position = UDim2.new(0, 260, 0, 75)
  218. Legendary.Size = UDim2.new(0, 70, 0, 53)
  219. Legendary.Font = Enum.Font.SourceSansLight
  220. Legendary.FontSize = Enum.FontSize.Size14
  221. Legendary.Text = 'Reputation'
  222. Legendary.TextColor3 = Color3.new(1, 1, 1)
  223. Legendary.TextStrokeColor3 = Color3.new(1, 1, 1)
  224.  
  225. Namee_3.Name = 'Namee'
  226. Namee_3.Parent = Legendary
  227. Namee_3.BackgroundColor3 = Color3.new(0, 1, 0.968628)
  228. Namee_3.BackgroundTransparency = 0.60000002384186
  229. Namee_3.BorderSizePixel = 0
  230. Namee_3.Position = UDim2.new(0, 0, 0, 55)
  231. Namee_3.Size = UDim2.new(0, 70, 0, 15)
  232. Namee_3.Font = Enum.Font.SourceSansLight
  233. Namee_3.FontSize = Enum.FontSize.Size14
  234. Namee_3.Text = '[Amount]'
  235. Namee_3.TextColor3 = Color3.new(1, 1, 1)
  236.  
  237. LegendaryA = Namee_3.Text
  238. Legendary.MouseButton1Down:connect(function(open)
  239. LegendaryA = Namee_3.Text
  240. game.Workspace.Stats.SetStat:FireServer('Reputation', tonumber(LegendaryA) + 0, 'math.random() is the best thing ever')
  241. end)
  242. --
  243.  
  244. Level.Name = 'Level'
  245. Level.Parent = Chat
  246. Level.BackgroundColor3 = Color3.new(0, 1, 0.968628)
  247. Level.BackgroundTransparency = 0.60000002384186
  248. Level.BorderSizePixel = 0
  249. Level.Position = UDim2.new(0, 420, 0, 75)
  250. Level.Size = UDim2.new(0, 70, 0, 53)
  251. Level.Font = Enum.Font.SourceSansLight
  252. Level.FontSize = Enum.FontSize.Size18
  253. Level.Text = 'Level'
  254. Level.TextColor3 = Color3.new(1, 1, 1)
  255. Level.TextStrokeColor3 = Color3.new(1, 1, 1)
  256.  
  257. TextLabel.Parent = Level
  258. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  259. TextLabel.BackgroundTransparency = 1
  260. TextLabel.Position = UDim2.new(0, 0, 0, 29)
  261. TextLabel.Size = UDim2.new(0, 70, 0, 24)
  262. TextLabel.ZIndex = 10
  263. TextLabel.Font = Enum.Font.SourceSans
  264. TextLabel.FontSize = Enum.FontSize.Size14
  265. TextLabel.Text = 'Detectable'
  266. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  267.  
  268. Namee_4.Name = 'Namee'
  269. Namee_4.Parent = Level
  270. Namee_4.BackgroundColor3 = Color3.new(0, 1, 0.968628)
  271. Namee_4.BackgroundTransparency = 0.60000002384186
  272. Namee_4.BorderSizePixel = 0
  273. Namee_4.Position = UDim2.new(0, 0, 0, 55)
  274. Namee_4.Size = UDim2.new(0, 70, 0, 15)
  275. Namee_4.Font = Enum.Font.SourceSansLight
  276. Namee_4.FontSize = Enum.FontSize.Size14
  277. Namee_4.Text = '[Amount]'
  278. Namee_4.TextColor3 = Color3.new(1, 1, 1)
  279.  
  280. LevelA = Namee_4.Text
  281. Level.MouseButton1Down:connect(function(open)
  282. LevelA = Namee_4.Text
  283. game.Workspace.Stats.SetStat:FireServer('Level', tonumber(LevelA) + 0, 'math.random() is the best thing ever')
  284. end)
  285. --
  286.  
  287. Nowipe.Name = 'Nowipe'
  288. Nowipe.Parent = Chat
  289. Nowipe.BackgroundColor3 = Color3.new(0, 1, 0.968628)
  290. Nowipe.BackgroundTransparency = 0.60000002384186
  291. Nowipe.BorderSizePixel = 0
  292. Nowipe.Position = UDim2.new(0, 100, 0, 150)
  293. Nowipe.Size = UDim2.new(0, 70, 0, 70)
  294. Nowipe.Font = Enum.Font.SourceSansLight
  295. Nowipe.FontSize = Enum.FontSize.Size18
  296. Nowipe.Text = 'No Wipe'
  297. Nowipe.TextColor3 = Color3.new(1, 1, 1)
  298. Nowipe.TextStrokeColor3 = Color3.new(1, 1, 1)
  299. Nowipe.MouseButton1Down:connect(function(open)
  300. game.Workspace.Stats.WipeInventory:Remove()
  301. Instance.new('RemoteEvent', game.Workspace.Stats)
  302. game.Workspace.Stats.RemoteEvent.Name = 'WipeInventory'
  303. end)
  304. --
  305.  
  306. Regenerate.Name = 'Regenerate'
  307. Regenerate.Parent = Chat
  308. Regenerate.BackgroundColor3 = Color3.new(0, 1, 0.968628)
  309. Regenerate.BackgroundTransparency = 0.60000002384186
  310. Regenerate.BorderSizePixel = 0
  311. Regenerate.Position = UDim2.new(0, 20, 0, 150)
  312. Regenerate.Size = UDim2.new(0, 70, 0, 70)
  313. Regenerate.Font = Enum.Font.SourceSansLight
  314. Regenerate.FontSize = Enum.FontSize.Size18
  315. Regenerate.Text = 'Regenerate'
  316. Regenerate.TextColor3 = Color3.new(1, 1, 1)
  317. Regenerate.TextStrokeColor3 = Color3.new(1, 1, 1)
  318. Regenerate.MouseButton1Down:connect(function(open)
  319. while true do
  320. wait(1)
  321. game.Players.LocalPlayer.bin.MagicEnergy.Value = 99999
  322. game.Players.LocalPlayer.bin.Stamina.Value = 99999
  323. end
  324. end)
  325. --
  326.  
  327. SetMagic.Name = 'Set Magic'
  328. SetMagic.Parent = Chat
  329. SetMagic.BackgroundColor3 = Color3.new(0, 1, 0.968628)
  330. SetMagic.BackgroundTransparency = 0.60000002384186
  331. SetMagic.BorderSizePixel = 0
  332. SetMagic.Position = UDim2.new(0, 500, 0, 75)
  333. SetMagic.Size = UDim2.new(0, 70, 0, 53)
  334. SetMagic.Font = Enum.Font.SourceSansLight
  335. SetMagic.FontSize = Enum.FontSize.Size18
  336. SetMagic.Text = 'First Magic'
  337. SetMagic.TextColor3 = Color3.new(1, 1, 1)
  338. SetMagic.TextStrokeColor3 = Color3.new(1, 1, 1)
  339.  
  340. Namee_5.Name = 'Namee'
  341. Namee_5.Parent = SetMagic
  342. Namee_5.BackgroundColor3 = Color3.new(0, 1, 0.968628)
  343. Namee_5.BackgroundTransparency = 0.60000002384186
  344. Namee_5.BorderSizePixel = 0
  345. Namee_5.Position = UDim2.new(0, 0, 0, 55)
  346. Namee_5.Size = UDim2.new(0, 70, 0, 15)
  347. Namee_5.Font = Enum.Font.SourceSansLight
  348. Namee_5.FontSize = Enum.FontSize.Size14
  349. Namee_5.Text = '[Amount]'
  350. Namee_5.TextColor3 = Color3.new(1, 1, 1)
  351. MagicA = Namee_5.Text
  352. SetMagic.MouseButton1Down:connect(function(open)
  353. MagicA = Namee_5.Text
  354. game.Workspace.Stats.SetStat:FireServer('Magic', tostring(MagicA), 'math.random() is the best thing ever')
  355. end)
  356.  
  357. SetSecondMagic.Name = 'Set Second Magic'
  358. SetSecondMagic.Parent = Chat
  359. SetSecondMagic.BackgroundColor3 = Color3.new(0, 1, 0.968628)
  360. SetSecondMagic.BackgroundTransparency = 0.60000002384186
  361. SetSecondMagic.BorderSizePixel = 0
  362. SetSecondMagic.Position = UDim2.new(0, 260, 0, 150)
  363. SetSecondMagic.Size = UDim2.new(0, 70, 0, 53)
  364. SetSecondMagic.Font = Enum.Font.SourceSansLight
  365. SetSecondMagic.FontSize = Enum.FontSize.Size14
  366. SetSecondMagic.Text = 'Second Magic'
  367. SetSecondMagic.TextColor3 = Color3.new(1, 1, 1)
  368. SetSecondMagic.TextStrokeColor3 = Color3.new(1, 1, 1)
  369.  
  370. Namee_7.Name = 'Namee'
  371. Namee_7.Parent = SetSecondMagic
  372. Namee_7.BackgroundColor3 = Color3.new(0, 1, 0.968628)
  373. Namee_7.BackgroundTransparency = 0.60000002384186
  374. Namee_7.BorderSizePixel = 0
  375. Namee_7.Position = UDim2.new(0, 0, 0, 55)
  376. Namee_7.Size = UDim2.new(0, 70, 0, 15)
  377. Namee_7.Font = Enum.Font.SourceSansLight
  378. Namee_7.FontSize = Enum.FontSize.Size14
  379. Namee_7.Text = '[Amount]'
  380. Namee_7.TextColor3 = Color3.new(1, 1, 1)
  381. MagicA = Namee_7.Text
  382. SetSecondMagic.MouseButton1Down:connect(function(open)
  383. MagicA = Namee_7.Text
  384. game.Workspace.Stats.SetStat:FireServer('Magic2', tostring(MagicA), 'math.random() is the best thing ever')
  385. end)
  386. --
  387. --
  388.  
  389. SkillPoints.Name = 'Skill Points'
  390. SkillPoints.Parent = Chat
  391. SkillPoints.BackgroundColor3 = Color3.new(0, 1, 0.968628)
  392. SkillPoints.BackgroundTransparency = 0.60000002384186
  393. SkillPoints.BorderSizePixel = 0
  394. SkillPoints.Position = UDim2.new(0, 340, 0, 150)
  395. SkillPoints.Size = UDim2.new(0, 70, 0, 53)
  396. SkillPoints.Font = Enum.Font.SourceSansLight
  397. SkillPoints.FontSize = Enum.FontSize.Size18
  398. SkillPoints.Text = 'Skill Points'
  399. SkillPoints.TextColor3 = Color3.new(1, 1, 1)
  400. SkillPoints.TextStrokeColor3 = Color3.new(1, 1, 1)
  401.  
  402. Namee_6.Name = 'Namee'
  403. Namee_6.Parent = SkillPoints
  404. Namee_6.BackgroundColor3 = Color3.new(0, 1, 0.968628)
  405. Namee_6.BackgroundTransparency = 0.60000002384186
  406. Namee_6.BorderSizePixel = 0
  407. Namee_6.Position = UDim2.new(0, 0, 0, 55)
  408. Namee_6.Size = UDim2.new(0, 70, 0, 15)
  409. Namee_6.Font = Enum.Font.SourceSansLight
  410. Namee_6.FontSize = Enum.FontSize.Size14
  411. Namee_6.Text = '[Amount]'
  412. Namee_6.TextColor3 = Color3.new(1, 1, 1)
  413. SPA = Level.Namee_6.Text
  414. SkillPoints.MouseButton1Down:connect(function(open)
  415. SPA = Level.Namee.Text
  416. game.Workspace.Stats.SetStat:FireServer('SP', tonumber(SPA) + 0, 'math.random() is the best thing ever')
  417. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement