newtmannewt

Untitled

May 25th, 2018
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. WARSOUNDS = true -- plays war sounds
  2. -------------------------
  3. if WARSOUNDS == true then
  4. myears = Instance.new('Sound')
  5. myears.Parent = workspace
  6. myears.Looped = true
  7. myears.Name = "Darude on meth"
  8. myears.Playing = true
  9. myears.SoundId = "rbxassetid://216599097"
  10. myears.Volume = .5
  11. myears.TimePosition = 0
  12. end
  13. game.Lighting.TimeOfDay = "14"
  14. game.Lighting.Brightness = 1.3
  15. o1 = Instance.new("Sky")
  16. o1.Name = "Desert Sky"
  17. o1.Parent = game.Lighting
  18. o1.SkyboxBk = "http://www.roblox.com/asset/?version=1&id=1013852"
  19. o1.SkyboxDn = "http://www.roblox.com/asset/?version=1&id=1013853"
  20. o1.SkyboxFt = "http://www.roblox.com/asset/?version=1&id=1013850"
  21. o1.SkyboxLf = "http://www.roblox.com/asset/?version=1&id=1013851"
  22. o1.SkyboxRt = "http://www.roblox.com/asset/?version=1&id=1013849"
  23. o1.SkyboxUp = "http://www.roblox.com/asset/?version=1&id=1013854"
  24. for _,c in pairs(game.Workspace:GetChildren()) do
  25. if c:IsA("Part") then
  26. c.BrickColor = BrickColor.new("Brick yellow")
  27. end
  28. if c:IsA("Model") then
  29. for _,b in pairs(c:GetChildren()) do
  30. if b:IsA("Part") then
  31. b.BrickColor = BrickColor.new("Brick yellow")
  32. end
  33. if b:IsA("Model") then
  34. for _,a in pairs(b:GetChildren()) do
  35. if a:IsA("Part") then
  36. a.BrickColor = BrickColor.new("Brick yellow")
  37. end
  38. end
  39. end
  40. end
  41. end
  42. end
Add Comment
Please, Sign In to add comment