Advertisement
Guest User

Untitled

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