Advertisement
RyanDaCoder

SUN (FIXED)

Jul 19th, 2017
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. local sun = Instance.new("Part")
  2. local mesh = Instance.new("SpecialMesh")
  3. mesh.Shape = "Sphere"
  4. mesh.Parent = sun
  5. sun.Size = sun.Size = vector3.new("12, 12, 12")
  6. sun.Name = "Sun"
  7. sun.CFrame = game.Players.LocalPlayer.Character.Head.CFrame
  8. sun.Anchored = true
  9. sun.CanCollide = false
  10. sun.Parent = game.Workspace
  11. local sunSound = Instance.new("Sound")
  12. sunSound.SoundId = "rbxassetid://811841430"
  13. sunSound.Name = "SunSound"
  14. sunSound.Parent = game.Workspace
  15. game.Workspace.SunSound.Playing = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement