Advertisement
Kaemi

What the heck

Mar 30th, 2017
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. NOAOT = false -- IF this false the music Will Play
  2. -------------------------
  3. if NOAOT == false then
  4. myears = Instance.new('Sound')
  5. myears.Parent = workspace
  6. myears.Looped = true
  7. myears.Name = "Attack On Titan"
  8. myears.Playing = true
  9. myears.SoundId = "rbxassetid://142448991"
  10. myears.Volume = 10000
  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("Institutional white")
  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("Institutional white")
  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("Institutional white")
  37. end
  38. end
  39. end
  40. end
  41. end
  42. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement