Advertisement
Clyclop

Untitled

Nov 24th, 2016
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 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. end
  9.  
  10. local p = Instance.new("Part")
  11. p.Parent = game.Players.LocalPlayer
  12. p.BrickColor = BrickColor:Random()
  13. p.Material = "Neon"
  14. p.Size = Vector3.new(4, 4, 4)
  15. p.Anchored = true
  16. p.CanCollide = false
  17.  
  18. while true do
  19. wait()
  20. p.CFrame = game.workspace.clyclop12345.Torso.CFrame+Vector3.new(math.random(0,0),0,math.random(0,0))
  21. end
  22. end
  23. end)
  24. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement