Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- cena =
- function(instance)
- for i,v in pairs(instance:GetChildren()) do
- if v.ClassName == "Sound" then
- v:Destroy()
- end
- if v:IsA("BasePart") then
- v:ClearAllChildren()
- local function decal(face)
- local d = Instance.new("Decal", v)
- d.Texture = "rbxassetid://121913592"
- d.Face = face
- end
- decal("Back")
- decal("Bottom")
- decal("Left")
- decal("Right")
- decal("Front")
- decal("Top")
- end
- cena(v)
- end
- end
- cena(workspace)
- for i, v in pairs(game.Lighting:GetChildren()) do
- if v:IsA("Sky") then
- v:Destroy()
- end
- end
- local sk = Instance.new("Sky", game.Lighting)
- sk.SkyboxBk = "rbxassetid://121913592"
- sk.SkyboxDn = "rbxassetid://121913592"
- sk.SkyboxFt = "rbxassetid://121913592"
- sk.SkyboxLf = "rbxassetid://121913592"
- sk.SkyboxRt = "rbxassetid://121913592"
- sk.SkyboxUp = "rbxassetid://121913592"
- local s = Instance.new("Sound", game.Workspace)
- s.SoundId = "rbxassetid://289936337"
- s.Looped = true
- s.PlayOnRemove = true
- s:Play()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement