Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- print("ran")
- local player = game.Players.LocalPlayer
- local character = player.Character
- character.Parent = game.Workspace.Camera
- for i,v in pairs(character:GetChildren()) do
- if v.ClassName == ("Part") then
- v.Transparency = 0.5
- end
- end
- while true do
- local c = character:Clone()
- c.Parent = game.Workspace
- wait(0.1)
- c:Destroy()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement