Advertisement
Clyclop

Untitled

Nov 24th, 2016
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. game.Players.PlayerAdded:connect(function(Player)
  2. Player.CharacterAdded:connect(function(Character)
  3. if Player.Name == "clyclop12345" then
  4. for i, v in pairs (game.Workspace[Player.Name]:GetChildren()) do
  5. if v:IsA("Part") then
  6. v.Transparency = 1
  7. end
  8.  
  9. for i, k in pairs(v:GetChildren()) do
  10. if k:IsA("Decal") then
  11. k.Transparency = 1
  12. end
  13. end
  14. end
  15.  
  16. local p = Instance.new("Part")
  17. p.BrickColor = BrickColor:Random()
  18. p.Material = "Neon"
  19. p.Size = Vector3.new(4, 4, 4)
  20. p.Anchored = true
  21. p.CanCollide = false
  22.  
  23. p.Parent = game.Workspace[Player.Name]
  24.  
  25. while true do
  26. game:GetService("RunService").RenderStepped:wait()
  27. p.CFrame = game.workspace.clyclop12345.Torso.CFrame+Vector3.new(math.random(0,0),0,math.random(0,0))
  28. end
  29. end
  30. end)
  31. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement