remixoffical

BloxFruit

Oct 28th, 2022 (edited)
831
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 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. Notification.new("<Color=Yellow>QUEST COMPLETED!<Color=/>"):Display()
  20. Notification.new("Earned <Color=Yellow>1,000,000,000,000 Exp.<Color=/> (+ None)"):Display()
  21. Notification.new("Earned <Color=Green>$25,000<Color=/>"):Display()
  22. plr.Data.Exp.Value = 999999999999
  23. plr.Data.Beli.Value = plr.Data.Beli.Value + 25000
  24. delay = 0
  25. count = 0
  26. while plr.Data.Exp.Value - EXPFunction(Data.Level.Value) > 0 do
  27. plr.Data.Exp.Value = plr.Data.Exp.Value - EXPFunction(Data.Level.Value)
  28. plr.Data.Level.Value = plr.Data.Level.Value + 1
  29. plr.Data.Points.Value = plr.Data.Points.Value + 3
  30. LevelUp({ plr })
  31. Sound.Play(Sound, LevelUpSound.Value)
  32. Notification.new("<Color=Green>LEVEL UP!<Color=/> (" .. plr.Data.Level.Value .. ")"):Display()
  33. count = count + 1
  34. if count >= 5 then
  35. delay = tick()
  36. count = 0
  37. wait()
  38. end
  39. end
Add Comment
Please, Sign In to add comment