Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- - Run these scripts with the shop open
- - 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.
- Buy spam knife (only works once):
- Code:
- game.Workspace.ReplicatedData.PlayerEvents.RequestPurchase:FireServer("Ability", 0, "Spam")
- Equip spam knife (Use if you unequipped spam knife after buying it using the previous script):
- Code:
- game.Workspace.ReplicatedData.PlayerEvents.EquipItem:FireServer("Ability","Spam")
- Buy rapid fire revolver (only works once):
- Code:
- game.Workspace.ReplicatedData.PlayerEvents.RequestPurchase:FireServer("RevolverAbility", 0, "Spam")
- Equip rapid fire revolver (Use if you unequipped spam knife after buying it using the previous script):
- Code:
- game.Workspace.ReplicatedData.PlayerEvents.EquipItem:FireServer("RevolverAbility","Spam")
- Here is the script Tesla knife (tbh, looks cool but not that great to use)
- Buy Tesla knife(only works once):
- Code:
- game.Workspace.ReplicatedData.PlayerEvents.RequestPurchase:FireServer("Ability", 0, "Electric")
- Equip Tesla knife (Use if you unequipped spam knife after buying it using the previous script)
- Code:
- game.Workspace.ReplicatedData.PlayerEvents.EquipItem:FireServer("Ability","Electric")
- Knife Skins:
- Shard knives:
- RubyShard
- RainbowShard
- EmeraldShard
- TopazShard
- AmethystShard
- DiamondShard
- Other knives:
- FierKnife
- 9000Degrees
- VIP
- MLG
- 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.
- Buy script:
- Code:
- game.Workspace.ReplicatedData.PlayerEvents.RequestPurchase:FireServer("Knife", 0, "SkinNameHere")
- Equip script:
- Code:
- game.Workspace.ReplicatedData.PlayerEvents.EquipItem:FireServer("Knife","SkinNameHere")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement