Tanjiro-Kamado

Bump in the Night (OP) [New discord!]

Feb 9th, 2020
1,059
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.19 KB | None | 0 0
  1. --[[
  2. Credits to; b1ooq
  3. Official thread; https://v3rmillion.net/showthread.php?tid=944444
  4. -------------------------------------------------------------------------------
  5. Script was provided from the official Demon Slayers Community Server; https://discord.gg/demonslayers
  6. Official thread; https://v3rmillion.net/showthread.php?tid=936292 |<-- More info
  7. ]]--
  8.  
  9. -- get exp
  10. local string_1 = "xp";
  11. local number_1 = 500000; -- its like 100+ level or something
  12. local Target = game:GetService("ReplicatedStorage").Remotes.ChangeSetting;
  13. Target:FireServer(string_1, number_1);
  14.  
  15.  
  16. -- 100% juggernaut chance
  17. local string_1 = "jugchance";
  18. local number_1 = 100; -- percentage
  19. local Target = game:GetService("ReplicatedStorage").Remotes.ChangeSetting;
  20. Target:FireServer(string_1, number_1);
  21.  
  22. -- 100% beast chance
  23. local string_1 = "beastchance";
  24. local number_1 = 100; -- percentage
  25. local Target = game:GetService("ReplicatedStorage").Remotes.ChangeSetting;
  26. Target:FireServer(string_1, number_1);
  27.  
  28. -- a lot of points
  29. local string_1 = "AP";
  30. local number_1 = 10000; -- gives points
  31. local Target = game:GetService("ReplicatedStorage").Remotes.ChangeSetting;
  32. Target:FireServer(string_1, number_1);
Advertisement
Add Comment
Please, Sign In to add comment