Advertisement
Roblox-lua

Untitled

Apr 24th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.39 KB | None | 0 0
  1. debounce = true
  2. local plr = game.Players.LocalPlayer
  3.  
  4. script.Parent.MouseButton1Down:connect(function()
  5.     if (h ~= nil and debounce == true) then
  6.         local g = script.Parent
  7.         debounce = false
  8.         p = g.Pants:clone()
  9.         s = g.Shirt:clone()
  10.         p.Parent = plr.Character
  11.         s.Parent = plr.Character
  12.         wait(1)
  13.         debounce = true
  14.     end
  15. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement