Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local m = game.Workspace
- while true do
- wait(0.01)
- for i,v in pairs(m:GetChildren()) do
- if v.ClassName == ("Part") then
- v.Anchored = true
- v.Name = ("frozen")
- end
- if v.ClassName == ("Script") then
- v:Destroy()
- end
- if v.ClassName == ("Model") then
- for i,v in pairs(v:GetChildren()) do
- if v.ClassName == ("Part") then
- if v.Parent.Name ~= ("robloxandtyler") then
- v.Anchored = true
- end
- end
- if v.ClassName == ("Script") then
- if v.Parent.Name ~= ("robloxandtyler") then
- v:Remove()
- end
- end
- end
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement