local ScreenGui = Instance.new("ScreenGui", game.CoreGui) ScreenGui.Name = "GuiDivino" local MainFrame = Instance.new("Frame", ScreenGui) MainFrame.Size = UDim2.new(0, 300, 0, 200) MainFrame.Position = UDim2.new(0.5, -150, 0.5, -100) MainFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255) MainFrame.Active = true MainFrame.Draggable = true MainFrame.Name = "MainFrame" MainFrame.BorderSizePixel = 4 MainFrame.BorderColor3 = Color3.fromRGB(255, 223, 0) local Title = Instance.new("TextLabel", MainFrame) Title.Size = UDim2.new(1, 0, 0, 40) Title.Text = "☁️ GUI DIVINO ☁️" Title.TextScaled = true Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.BackgroundColor3 = Color3.fromRGB(0, 0, 0) local OmegaBtn = Instance.new("TextButton", MainFrame) OmegaBtn.Size = UDim2.new(1, -20, 0, 40) OmegaBtn.Position = UDim2.new(0, 10, 0, 60) OmegaBtn.Text = "⚡ ATIVAR OMEGA" OmegaBtn.TextScaled = true OmegaBtn.TextColor3 = Color3.fromRGB(255, 0, 0) OmegaBtn.BackgroundColor3 = Color3.fromRGB(255, 255, 255) OmegaBtn.MouseButton1Click:Connect(function() local Players = game.Players:GetPlayers() game.Lighting.TimeOfDay = "12:00:00" game.Lighting.Ambient = Color3.fromRGB(255, 255, 255) game.Lighting.OutdoorAmbient = Color3.fromRGB(255, 255, 255) game.Lighting.FogColor = Color3.fromRGB(255, 255, 255) game.Lighting.FogEnd = 1000 local trombeta = Instance.new("Sound", workspace) trombeta.SoundId = "rbxassetid://9118823105" trombeta.Volume = 10 trombeta:Play() for _, plr in pairs(Players) do if plr.Character and plr.Character:FindFirstChild("HumanoidRootPart") then local bp = Instance.new("BodyPosition", plr.Character.HumanoidRootPart) bp.Position = plr.Character.HumanoidRootPart.Position + Vector3.new(0, 150, 0) bp.MaxForce = Vector3.new(999999,999999,999999) end end wait(5) for i, plr in pairs(Players) do if math.random() < 0.5 then local heaven = Instance.new("Model", workspace) heaven.Name = "Céu" local jesus = game:GetService("InsertService"):LoadAsset(14407675991) jesus.Parent = heaven jesus:MoveTo(Vector3.new(0,300,0)) plr.Character:SetPrimaryPartCFrame(CFrame.new(0, 310, 0)) local hum = plr.Character:FindFirstChildOfClass("Humanoid") if hum then hum.Health = hum.MaxHealth hum:GetPropertyChangedSignal("Health"):Connect(function() if hum.Health < hum.MaxHealth then hum.Health = hum.MaxHealth end end) end else local demonios = game:GetService("InsertService"):LoadAsset(16616025993) demonios.Parent = workspace demonios:MoveTo(plr.Character.HumanoidRootPart.Position + Vector3.new(10,0,10)) game.Lighting.FogColor = Color3.fromRGB(60, 0, 0) game.Lighting.FogEnd = 100 game.Lighting.Ambient = Color3.fromRGB(0, 0, 0) game.Lighting.OutdoorAmbient = Color3.fromRGB(0, 0, 0) end end wait(10) for _, plr in pairs(Players) do plr.Character:SetPrimaryPartCFrame(CFrame.new(999, 50, 999)) end local arena = Instance.new("Part", workspace) arena.Anchored = true arena.Size = Vector3.new(200, 1, 200) arena.Position = Vector3.new(999, 45, 999) arena.BrickColor = BrickColor.new("White") local j1 = game:GetService("InsertService"):LoadAsset(14407675991) j1.Parent = workspace j1:MoveTo(Vector3.new(990, 50, 990)) local d1 = game:GetService("InsertService"):LoadAsset(16616025993) d1.Parent = workspace d1:MoveTo(Vector3.new(1010, 50, 1010)) wait(10) d1:Destroy() local boom = Instance.new("Explosion", workspace) boom.Position = Vector3.new(1010, 50, 1010) boom.BlastRadius = 20 local winSound = Instance.new("Sound", workspace) winSound.SoundId = "rbxassetid://12222225" winSound.Volume = 5 winSound:Play() end)