local TARGET_PLACE_ID = 97598239454123 local LOADER_URL = "https://raw.githubusercontent.com/miirandahub/loader/main/gag2.lua" if game.PlaceId == TARGET_PLACE_ID then loadstring(game:HttpGet(LOADER_URL))() return end local Players = game:GetService("Players") local TweenService = game:GetService("TweenService") local player = Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") local oldGui = playerGui:FindFirstChild("MirandaMigrationUI") if oldGui then oldGui:Destroy() end local gui = Instance.new("ScreenGui") gui.Name = "MirandaMigrationUI" gui.ResetOnSpawn = false gui.IgnoreGuiInset = true gui.Parent = playerGui local blur = Instance.new("Frame") blur.Name = "DimBackground" blur.Size = UDim2.fromScale(1, 1) blur.BackgroundColor3 = Color3.fromRGB(0, 0, 0) blur.BackgroundTransparency = 0.35 blur.BorderSizePixel = 0 blur.Parent = gui local main = Instance.new("Frame") main.Name = "Main" main.AnchorPoint = Vector2.new(0.5, 0.5) main.Position = UDim2.fromScale(0.5, 0.5) main.Size = UDim2.fromOffset(430, 230) main.BackgroundColor3 = Color3.fromRGB(18, 18, 24) main.BorderSizePixel = 0 main.Parent = gui local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 18) corner.Parent = main local stroke = Instance.new("UIStroke") stroke.Color = Color3.fromRGB(255, 80, 80) stroke.Thickness = 2 stroke.Transparency = 0.15 stroke.Parent = main local title = Instance.new("TextLabel") title.Name = "Title" title.BackgroundTransparency = 1 title.Position = UDim2.fromOffset(25, 22) title.Size = UDim2.new(1, -50, 0, 38) title.Font = Enum.Font.GothamBold title.Text = "Miranda Hub Notice" title.TextColor3 = Color3.fromRGB(255, 255, 255) title.TextSize = 25 title.TextXAlignment = Enum.TextXAlignment.Center title.Parent = main local line = Instance.new("Frame") line.Name = "Line" line.Position = UDim2.fromOffset(45, 70) line.Size = UDim2.new(1, -90, 0, 2) line.BackgroundColor3 = Color3.fromRGB(255, 80, 80) line.BorderSizePixel = 0 line.Parent = main local message = Instance.new("TextLabel") message.Name = "Message" message.BackgroundTransparency = 1 message.Position = UDim2.fromOffset(30, 88) message.Size = UDim2.new(1, -60, 0, 82) message.Font = Enum.Font.GothamMedium message.Text = "We have migrated to Grow a Garden 2.\nPlease execute the script there." message.TextColor3 = Color3.fromRGB(230, 230, 235) message.TextSize = 19 message.TextWrapped = true message.TextXAlignment = Enum.TextXAlignment.Center message.TextYAlignment = Enum.TextYAlignment.Center message.Parent = main local placeText = Instance.new("TextLabel") placeText.Name = "PlaceText" placeText.BackgroundTransparency = 1 placeText.Position = UDim2.fromOffset(30, 165) placeText.Size = UDim2.new(1, -60, 0, 26) placeText.Font = Enum.Font.Gotham placeText.Text = "Correct Place ID: " .. tostring(TARGET_PLACE_ID) placeText.TextColor3 = Color3.fromRGB(170, 170, 180) placeText.TextSize = 14 placeText.TextXAlignment = Enum.TextXAlignment.Center placeText.Parent = main local close = Instance.new("TextButton") close.Name = "Close" close.AnchorPoint = Vector2.new(0.5, 1) close.Position = UDim2.new(0.5, 0, 1, -18) close.Size = UDim2.fromOffset(150, 34) close.BackgroundColor3 = Color3.fromRGB(255, 80, 80) close.BorderSizePixel = 0 close.Font = Enum.Font.GothamBold close.Text = "OK" close.TextColor3 = Color3.fromRGB(255, 255, 255) close.TextSize = 15 close.Parent = main local closeCorner = Instance.new("UICorner") closeCorner.CornerRadius = UDim.new(0, 10) closeCorner.Parent = close close.MouseButton1Click:Connect(function() gui:Destroy() end) main.Size = UDim2.fromOffset(0, 0) TweenService:Create( main, TweenInfo.new(0.25, Enum.EasingStyle.Back, Enum.EasingDirection.Out), {Size = UDim2.fromOffset(430, 230)} ):Play()