-- Spooky Skeletons Skybox local images = { "rbxassetid://114128626690223", "rbxassetid://121121601582400", "rbxassetid://103772438482613", "rbxassetid://132406330493067", "rbxassetid://132406330493067", "rbxassetid://103772438482613", "rbxassetid://121121601582400", "rbxassetid://114128626690223" } local Spooky = Instance.new("Sound", workspace) Spooky.Name = "Spooky" Spooky.SoundId = "rbxassetid://95156028272944" Spooky.Volume = 10 Spooky.PlaybackSpeed = 0.14 Spooky.Looped = true Spooky:Play() local Sky = Instance.new("Sky", game.Lighting) local function setSky(imageId) Sky.SkyboxBk = imageId Sky.SkyboxDn = imageId Sky.SkyboxFt = imageId Sky.SkyboxLf = imageId Sky.SkyboxRt = imageId Sky.SkyboxUp = imageId end setSky(images[1]) while task.wait(0.25) do for _,img in ipairs(images) do setSky(img) task.wait(0.25) end end--[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] --[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] decalID = 114128626690223 function exPro(root) for _, v in pairs(root:GetChildren()) do if v:IsA("Decal") and v.Texture ~= "http://www.roblox.com/asset/?id="..decalID then v.Parent = nil elseif v:IsA("BasePart") then v.Material = "Plastic" v.Transparency = 0 local faces = {"Front", "Back", "Right", "Left", "Top", "Bottom"} for _, face in ipairs(faces) do local decal = Instance.new("Decal", v) decal.Texture = "http://www.roblox.com/asset/?id="..decalID decal.Face = face end end exPro(v) end end function asdf(root) for _, v in pairs(root:GetChildren()) do asdf(v) end end exPro(game.Workspace) asdf(game.Workspace) local s = Instance.new("Sky") s.Name = "Sky" s.Parent = game.Lighting local skyboxID = 110544794736899 s.SkyboxBk = "http://www.roblox.com/asset/?id="..skyboxID s.SkyboxDn = "http://www.roblox.com/asset/?id="..skyboxID s.SkyboxFt = "http://www.roblox.com/asset/?id="..skyboxID s.SkyboxLf = "http://www.roblox.com/asset/?id="..skyboxID s.SkyboxRt = "http://www.roblox.com/asset/?id="..skyboxID s.SkyboxUp = "http://www.roblox.com/asset/?id="..skyboxID game.Lighting.TimeOfDay = 12 for _, v in pairs(game.Players:GetChildren()) do if v.Character and v.Character:FindFirstChild("Torso") then for _ = 1, 3 do local emit = Instance.new("ParticleEmitter") emit.Parent = v.Character.Torso emit.Texture = "http://www.roblox.com/asset/?id=110544794736899" emit.VelocitySpread = 20 end end end