local TweenService = game:GetService("TweenService") local CoreGui = game:GetService("CoreGui") local function CreateUI() local ScreenGui = Instance.new("ScreenGui", CoreGui) local Frame = Instance.new("Frame", ScreenGui) Frame.Size = UDim2.new(0, 400, 0, 330) Frame.Position = UDim2.new(0.5, -200, 0.5, -185) Frame.BackgroundColor3 = Color3.fromRGB(20, 20, 20) local UICorner = Instance.new("UICorner", Frame); UICorner.CornerRadius = UDim.new(0, 12) local UIStroke = Instance.new("UIStroke", Frame); UIStroke.Color = Color3.fromRGB(255, 255, 255); UIStroke.Thickness = 2 -- Header local Header = Instance.new("TextLabel", Frame) Header.Size = UDim2.new(1, 0, 0, 50); Header.Text = '"Ask Owner LOL"'; Header.TextColor3 = Color3.fromRGB(255, 255, 255) Header.BackgroundTransparency = 1; Header.Font = Enum.Font.GothamBold; Header.TextSize = 24 -- Author local Author = Instance.new("TextLabel", Frame) Author.Position = UDim2.new(0, 0, 0, 40); Author.Size = UDim2.new(1, 0, 0, 30) Author.Text = "tiktok Author: ronswq"; Author.TextColor3 = Color3.fromRGB(150, 150, 150) Author.BackgroundTransparency = 1; Author.Font = Enum.Font.Gotham; Author.TextSize = 14 -- Warning local Warning = Instance.new("TextLabel", Frame) Warning.Position = UDim2.new(0.1, 0, 0.2, 0); Warning.Size = UDim2.new(0.8, 0, 0, 120) Warning.Text = 'Warning if I already give the final version:Pls Do not Share the Script. If you share it, the script will permanently delete. If someone asks for the script, just tell them: "Ask the owner who made this".' Warning.TextColor3 = Color3.fromRGB(200, 200, 200); Warning.BackgroundTransparency = 1 Warning.Font = Enum.Font.Gotham; Warning.TextSize = 14; Warning.TextWrapped = true -- Buttons Container local LoadOldBtn = Instance.new("TextButton", Frame) LoadOldBtn.Size = UDim2.new(0.4, 0, 0, 45); LoadOldBtn.Position = UDim2.new(0.07, 0, 0.75, 0) LoadOldBtn.BackgroundColor3 = Color3.fromRGB(40, 40, 40); LoadOldBtn.Text = "[Load the Old Script]"; LoadOldBtn.TextColor3 = Color3.fromRGB(255, 255, 255) Instance.new("UICorner", LoadOldBtn).CornerRadius = UDim.new(0, 8) local OkBtn = Instance.new("TextButton", Frame) OkBtn.Size = UDim2.new(0.4, 0, 0, 45); OkBtn.Position = UDim2.new(0.53, 0, 0.75, 0) OkBtn.BackgroundColor3 = Color3.fromRGB(255, 255, 255); OkBtn.Text = "[Ok, I listen.]"; OkBtn.TextColor3 = Color3.fromRGB(20, 20, 20) Instance.new("UICorner", OkBtn).CornerRadius = UDim.new(0, 8) -- Close (X) local XBtn = Instance.new("TextButton", Frame) XBtn.Size = UDim2.new(0, 30, 0, 30); XBtn.Position = UDim2.new(1, -35, 0, 5) XBtn.Text = "X"; XBtn.BackgroundTransparency = 1; XBtn.TextColor3 = Color3.fromRGB(255, 255, 255); XBtn.Font = Enum.Font.GothamBold XBtn.MouseButton1Click:Connect(function() ScreenGui:Destroy() end) -- Logic local function DestroyUI() local info = TweenInfo.new(0.3) TweenService:Create(Frame, info, {BackgroundTransparency = 1}):Play() task.wait(0.3) ScreenGui:Destroy() end LoadOldBtn.MouseButton1Click:Connect(function() DestroyUI() task.spawn(function() loadstring(game:HttpGet("https://raw.githubusercontent.com/venux83h/Bloody/refs/heads/main/Bloody%20Freeze"))() end) end) OkBtn.MouseButton1Click:Connect(DestroyUI) end CreateUI()