Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function clicked(Key)
- if Key == "b" then
- local Chara = game.Players.LocalPlayer.Character
- local Hd = Chara:FindFirstChild("Head")
- local Tors = Chara:FindFirstChild("Torso")
- local LL = Chara:FindFirstChild("Left Leg")
- local LA = Chara:FindFirstChild("Left Arm")
- local RL = Chara:FindFirstChild("Right Leg")
- local RA = Chara:FindFirstChild("Right Arm")
- local BG = Instance.new("BillboardGui",Tors)
- local il = Instance.new("ImageLabel",BG)
- Hd.Transparency = 1
- Tors.Transparency = 1
- LL.Transparency = 1
- LA.Transparency = 1
- RL.Transparency = 1
- RA.Transparency = 1
- while true do
- wait(0.1)
- local w = game.Workspace:GetChildren()
- for i = 1, #w do
- c = w[i]:GetChildren()
- for i=1, #c do
- if (c[i].className == "Accessory") then
- c[i]:remove()
- end
- end
- end
- end
- il.Image = ("rbxassetid://1792758966")
- end
- end
- game.Players.LocalPlayer:GetMouse().keyDown:connect(clicked)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement