Advertisement
ManlyFoes

Untitled

Mar 31st, 2016
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. local w=game.Workspace:GetChildren()
  2. for i=1,#w do
  3. if (game.Players:GetPlayerFromCharacter(w[i]))==nil and (w[i].Name~="TinySB") and (w[i]~=game.Workspace.CurrentCamera) and (w[i]~=script) and (w[i]~=game.Workspace.Terrain) then
  4. if w[i].className == "Script" then
  5. w[i].Disabled = true
  6. end
  7. w[i]:Remove()
  8. end
  9. end
  10. local Base=Instance.new("Part",game.Workspace)
  11. Base.Name="Base"
  12. Base.Size=Vector3.new(1000,1,1000)
  13. Base.BrickColor=BrickColor.new("Earth green")
  14. Base.Anchored=true
  15. Base.Locked=true
  16. Base.TopSurface="Universal"
  17. Base.CFrame=CFrame.new(Vector3.new(0,0,0))
  18. local Spawn=Instance.new("SpawnLocation",game.Workspace)
  19. Spawn.Name="SpawnLocation"
  20. Spawn.Size=Vector3.new(6,1,6)
  21. Spawn.Transparency=1
  22. Spawn.CanCollide=false
  23. Spawn.Anchored=true
  24. Spawn.Locked=true
  25. Spawn.CFrame=CFrame.new(Vector3.new(0,1,0))
  26. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement