local skybox = function(id) local a = Instance.new("Sky", game:GetService("Lighting")) a.SkyboxBk = id a.SkyboxDn = id a.SkyboxFt = id a.SkyboxLf = id a.SkyboxRt = id a.SkyboxUp = id end local decalspam = function(id) for _,v in pairs(workspace:GetDescendants()) do if v:IsA("Decal") or v:IsA("Texture") then v.Texture = "rbxassetid://"..id end if v:IsA("BasePart") then for i = 1,5 do local decal = Instance.new("Decal", v) decal.Texture = "rbxassetid://"..id decal.Face = i end end end end local particles = function(id) for _, v in pairs(game:GetService("Players"):GetPlayers()) do local pe = Instance.new("ParticleEmitter", v.Character.Head) pe.Texture = "rbxassetid://"..id end end