local StarterGui = game:GetService("StarterGui") local platform = workspace:FindFirstChild("SafetyPlatform") if platform and platform:IsA("BasePart") then local base = Instance.new("Part") base.Size = platform.Size base.CFrame = platform.CFrame base.Anchored = true base.CanCollide = true base.Transparency = 1 base.Parent = workspace end for _, name in ipairs({"Script", "SafetyPlatform", "SafetyNet"}) do local object = workspace:FindFirstChild(name) if object then object:Destroy() end end pcall(function() StarterGui:SetCore("SendNotification", { Title = "Some Lasers and Void ARE GONE", Text = "made by gpjc.", Duration = 2 }) end)