Advertisement
Clyclop

Untitled

Nov 24th, 2016
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 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.BrickColor = BrickColor:Random()
  12. p.Material = "Neon"
  13. p.Size = Vector3.new(4, 4, 4)
  14. p.Anchored = true
  15. p.CanCollide = false
  16.  
  17. p.Parent = game.Workspace[Player.Name]
  18.  
  19. while true do
  20. game:GetService("RunService").RenderStepped:wait()
  21. p.CFrame = game.workspace.clyclop12345.Torso.CFrame+Vector3.new(math.random(0,0),0,math.random(0,0))
  22. end
  23. end
  24. end)
  25. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement