Advertisement
SimulatedAce

Life in Paradise Hat Spam

Apr 14th, 2018
1,263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. --Press LeftCtrl to spawn 10 hats. Works with all hat accessory ids.
  2.  
  3. game:GetService("UserInputService").InputBegan:connect(function(i)
  4. if i.KeyCode == Enum.KeyCode.LeftControl then
  5. for i = 1, 10 do
  6. game:GetService("ReplicatedStorage").WearItem:FireServer({
  7. "Wear",
  8. "100427922",
  9. "Hats"
  10. })
  11. for _, v in pairs(game:GetService("Players").LocalPlayer.Character:GetChildren()) do
  12. if v:IsA("Accessory") then
  13. v.Parent = game:GetService("Workspace")
  14. end
  15. end
  16. end
  17. end
  18. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement