Advertisement
Scriptorz5

kat

Jun 18th, 2018
11,879
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. Buy spam knife (only works once):
  2. Code:
  3. game.Workspace.ReplicatedData.PlayerEvents.RequestPurchase:FireServer("Ability", 0, "Spam")
  4.  
  5. Equip spam knife (Use if you unequipped spam knife after buying it using the previous script):
  6. Code:
  7. game.Workspace.ReplicatedData.PlayerEvents.EquipItem:FireServer("Ability","Spam")
  8.  
  9. Buy rapid fire revolver (only works once):
  10. Code:
  11. game.Workspace.ReplicatedData.PlayerEvents.RequestPurchase:FireServer("RevolverAbility", 0, "Spam")
  12.  
  13. Equip rapid fire revolver (Use if you unequipped spam knife after buying it using the previous script):
  14. Code:
  15. game.Workspace.ReplicatedData.PlayerEvents.EquipItem:FireServer("RevolverAbility","Spam")
  16.  
  17. Here is the script Tesla knife (tbh, looks cool but not that great to use)
  18.  
  19. Buy Tesla knife(only works once):
  20. Code:
  21. game.Workspace.ReplicatedData.PlayerEvents.RequestPurchase:FireServer("Ability", 0, "Electric")
  22.  
  23. Equip Tesla knife (Use if you unequipped spam knife after buying it using the previous script)
  24. Code:
  25. game.Workspace.ReplicatedData.PlayerEvents.EquipItem:FireServer("Ability","Electric")
  26.  
  27. Knife Skins:
  28. Shard knives:
  29. RubyShard
  30. RainbowShard
  31. EmeraldShard
  32. TopazShard
  33. AmethystShard
  34. DiamondShard
  35.  
  36. Other knives:
  37. FierKnife
  38. 9000Degrees
  39. VIP
  40. MLG
  41.  
  42. Knife skins are just like the abilities. Once you have bought them using the first script if you unequip that knife, you will need to use the second script to re-equip it again.
  43.  
  44. Buy script:
  45. Code:
  46. game.Workspace.ReplicatedData.PlayerEvents.RequestPurchase:FireServer("Knife", 0, "SkinNameHere")
  47.  
  48. Equip script:
  49. Code:
  50. game.Workspace.ReplicatedData.PlayerEvents.EquipItem:FireServer("Knife","SkinNameHere")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement