mooodi1234

End Of The Server

Jun 7th, 2017
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. function getAll(obj)
  2. for i, v in pairs(obj:getChildren()) do
  3. if v:IsA("BasePart") then
  4. v.Anchored = false
  5. v.BrickColor = BrickColor.new(0)
  6. bv = Instance.new("BodyVelocity")
  7. bv.Parent = v
  8. bv.maxForce = Vector3.new(100000000,100000000,100000000)
  9. end
  10. getAll(v)
  11. end
  12. end
  13. getAll(workspace)
  14. game.Lighting.TimeOfDay = "07:00:00"
  15. game.Lighting.Ambient = Color3.new(0,0,0)
  16. sky = Instance.new("Sky")
  17. sky.Parent = game.Lighting
  18. sky.SkyboxBk = "http://www.roblox.com/asset/?id=138667781"
  19. sky.SkyboxDn = "http://www.roblox.com/asset/?id=138667781"
  20. sky.SkyboxFt = "http://www.roblox.com/asset/?id=138667781"
  21. sky.SkyboxLf = "http://www.roblox.com/asset/?id=138667781"
  22. sky.SkyboxRt = "http://www.roblox.com/asset/?id=138667781"
  23. sky.SkyboxUp = "http://www.roblox.com/asset/?id=138667781"
Add Comment
Please, Sign In to add comment