Advertisement
Scriptorz5

KAT

May 26th, 2018
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. - Run these scripts with the shop open
  2. - When an item is equipped, the equip button will still ask you to buy the item but, it will still be equipped in the background.
  3.  
  4. Buy spam knife (only works once):
  5. Code:
  6. game.Workspace.ReplicatedData.PlayerEvents.RequestPurchase:FireServer("Ability", 0, "Spam")
  7.  
  8. Equip spam knife (Use if you unequipped spam knife after buying it using the previous script):
  9. Code:
  10. game.Workspace.ReplicatedData.PlayerEvents.EquipItem:FireServer("Ability","Spam")
  11.  
  12. Buy rapid fire revolver (only works once):
  13. Code:
  14. game.Workspace.ReplicatedData.PlayerEvents.RequestPurchase:FireServer("RevolverAbility", 0, "Spam")
  15.  
  16. Equip rapid fire revolver (Use if you unequipped spam knife after buying it using the previous script):
  17. Code:
  18. game.Workspace.ReplicatedData.PlayerEvents.EquipItem:FireServer("RevolverAbility","Spam")
  19.  
  20. Here is the script Tesla knife (tbh, looks cool but not that great to use)
  21.  
  22. Buy Tesla knife(only works once):
  23. Code:
  24. game.Workspace.ReplicatedData.PlayerEvents.RequestPurchase:FireServer("Ability", 0, "Electric")
  25.  
  26. Equip Tesla knife (Use if you unequipped spam knife after buying it using the previous script)
  27. Code:
  28. game.Workspace.ReplicatedData.PlayerEvents.EquipItem:FireServer("Ability","Electric")
  29.  
  30. Knife Skins:
  31. Shard knives:
  32. RubyShard
  33. RainbowShard
  34. EmeraldShard
  35. TopazShard
  36. AmethystShard
  37. DiamondShard
  38.  
  39. Other knives:
  40. FierKnife
  41. 9000Degrees
  42. VIP
  43. MLG
  44.  
  45. 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.
  46.  
  47. Buy script:
  48. Code:
  49. game.Workspace.ReplicatedData.PlayerEvents.RequestPurchase:FireServer("Knife", 0, "SkinNameHere")
  50.  
  51. Equip script:
  52. Code:
  53. game.Workspace.ReplicatedData.PlayerEvents.EquipItem:FireServer("Knife","SkinNameHere")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement