Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Players = game:GetService("Players")
- local Lighting = game:GetService("Lighting")
- local userId = 42288283
- local thumbType = Enum.ThumbnailType.AvatarThumbnail
- local thumbSize = Enum.ThumbnailSize.Size420x420
- local content, isReady = Players:GetUserThumbnailAsync(userId, thumbType, thumbSize)
- for i,v in pairs(Lighting:GetDescendants()) do
- if v:IsA("Sky") then
- v:Destroy()
- end
- end
- local sky = Instance.new("Sky")
- sky.CelestialBodiesShown = false
- sky.SkyboxBk = content
- sky.SkyboxDn = content
- sky.SkyboxFt = content
- sky.SkyboxLf = content
- sky.SkyboxRt = content
- sky.SkyboxUp = content
- sky.StarCount = 0
- sky.Parent = Lighting
Add Comment
Please, Sign In to add comment