DARKMODZ

:trollface: bloxfruits script max fast

Jan 14th, 2024
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. local plr = game:GetService("Players").LocalPlayer
  2. local Notification = require(game:GetService("ReplicatedStorage").Notification)
  3. local Data = plr:WaitForChild("Data")
  4. local EXPFunction = require(game.ReplicatedStorage:WaitForChild("EXPFunction"))
  5. local LevelUp = require(game:GetService("ReplicatedStorage").Effect.Container.LevelUp)
  6. local Sound = require(game:GetService("ReplicatedStorage").Util.Sound)
  7. local LevelUpSound = game:GetService("ReplicatedStorage").Util.Sound.Storage.Other:FindFirstChild("LevelUp_Proxy") or game:GetService("ReplicatedStorage").Util.Sound.Storage.Other:FindFirstChild("LevelUp")
  8. function v129(p15)
  9. local v130 = p15;
  10. while true do
  11. local v131, v132 = string.gsub(v130, "^(-?%d+)(%d%d%d)", "%1,%2");
  12. v130 = v131;
  13. if v132 == 0 then
  14. break;
  15. end;
  16. end;
  17. return v130;
  18. end;
  19.  
  20. Notification.new("<Color=Yellow>QUEST COMPLETED!<Color=/>"):Display()
  21. Notification.new("Earned <Color=Yellow>1,000,000,000,000 Exp.<Color=/> (+ None)"):Display()
  22. Notification.new("Earned <Color=Green>$25,000<Color=/>"):Display()
  23. plr.Data.Exp.Value = 999999999999
  24. plr.Data.Beli.Value = plr.Data.Beli.Value + 25000
  25.  
  26. delay = 0
  27. count = 0
  28. while plr.Data.Exp.Value - EXPFunction(Data.Level.Value) > 0 do
  29. plr.Data.Exp.Value = plr.Data.Exp.Value - EXPFunction(Data.Level.Value)
  30. plr.Data.Level.Value = plr.Data.Level.Value + 1
  31. plr.Data.Points.Value = plr.Data.Points.Value + 3
  32. LevelUp({ plr })
  33. Sound.Play(Sound, LevelUpSound.Value)
  34. Notification.new("<Color=Green>LEVEL UP!<Color=/> (" .. plr.Data.Level.Value .. ")"):Display()
  35. count = count + 1
  36. if count >= 5 then
  37. delay = tick()
  38. count = 0
  39. wait()
  40. end
  41. end
Add Comment
Please, Sign In to add comment