Advertisement
Tanjiro-Kamado

Hard Time OP SCRIPTS! [INF currency, and more!]

Feb 9th, 2020
8,055
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.46 KB | None | 0 0
  1. --[[
  2. Credits to; backyard, sourdough & scum
  3. Official thread; https://v3rmillion.net/showthread.php?tid=944391
  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. -- Inf cash;
  10. local A_1 = "Tool11"
  11. local A_2 = "Cash"
  12. local A_3 = -9999999999 --change this to any amount of cash you want (-9999) for 9999 cash
  13. local A_4 = 2
  14. local Event = game:GetService("ReplicatedStorage").Events.BuyItem
  15. Event:FireServer(A_1, A_2, A_3, A_4)
  16.  
  17. -- Inf diamonds;
  18. local A_1 = "Tool12"
  19. local A_2 = "Diamond"
  20. local A_3 = -99999999999999 --change to name money or diamond lul
  21. local A_4 = 2
  22. local Event = game:GetService("ReplicatedStorage").Events.BuyItem
  23. Event:FireServer(A_1, A_2, A_3, A_4)
  24.  
  25. --- Change teams;
  26. -- Mercenary;
  27. local A_1 = BrickColor.new("Eggplant")
  28. local Event = game:GetService("ReplicatedStorage").ChangeTeam
  29. Event:FireServer(A_1)
  30.  
  31. -- Army;
  32. local A_1 = BrickColor.new("Parsley green")
  33. local Event = game:GetService("ReplicatedStorage").ChangeTeam
  34. Event:FireServer(A_1)
  35.  
  36. -- Mafia;
  37. local A_1 = BrickColor.new("Dirt brown")
  38. local Event = game:GetService("ReplicatedStorage").ChangeTeam
  39. Event:FireServer(A_1)
  40.  
  41. -- Swat;
  42. local A_1 = BrickColor.new("Really black")
  43. local Event = game:GetService("ReplicatedStorage").ChangeTeam
  44. Event:FireServer(A_1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement