Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- plr = game.Players.LocalPlayer
- mouse = plr:GetMouse()
- function onClicked()
- if onClicked ~= nil then
- local Victim = onClicked.Parent:FindFirstChild("Humanoid") or onClicked.Parent.Parent:FindFirstChild("Humanoid") or (onClicked.Parent.Parent.Parent ~= nil and onClicked.Parent.Parent.Parent:FindFirstChild("Humanoid"))
- if Victim ~= nil then
- for _, a in pairs(Victim:children()) do
- if a:IsA'Part' then
- while true do
- wait()
- for i = 1,10 do
- wait(0.5)
- a.Transparency =a.Transparency - 0.1
- end
- end
- wait(5)
- a:Destroy()
- end
- end
- mouse.Button1Down:connect(onClicked)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement