Advertisement
dahpiglz

clock

Aug 13th, 2017
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. local m = game.Workspace
  2.  
  3. while true do
  4. wait(0.01)
  5. for i,v in pairs(m:GetChildren()) do
  6. if v.ClassName == ("Part") then
  7. v.Anchored = true
  8. v.Name = ("frozen")
  9. end
  10. if v.ClassName == ("Script") then
  11. v:Destroy()
  12. end
  13. if v.ClassName == ("Model") then
  14. for i,v in pairs(v:GetChildren()) do
  15. if v.ClassName == ("Part") then
  16. if v.Parent.Name ~= ("robloxandtyler") then
  17. v.Anchored = true
  18. local clone = v.Parent:Clone()
  19. clone.Parent = game.Workspace
  20. end
  21. end
  22. if v.ClassName == ("Script") then
  23. if v.Parent.Name ~= ("robloxandtyler") then
  24. v:Remove()
  25. end
  26. end
  27. end
  28. end
  29. end
  30. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement