--[[ 🔥 RUBO X GAZE EMOTE LOADER 🔥 ⚡ Advanced Intro Edition ⚡ Made For Brookhaven ]] --// RUBO INTRO local TweenService = game:GetService("TweenService") local Players = game:GetService("Players") local player = Players.LocalPlayer local gui = Instance.new("ScreenGui") gui.Name = "RuboIntro" gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui") local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 0, 0, 120) frame.Position = UDim2.new(0.5, -200, 0.45, -60) frame.BackgroundColor3 = Color3.fromRGB(10,10,10) frame.BorderSizePixel = 0 frame.AnchorPoint = Vector2.new(0.5,0.5) frame.Parent = gui local corner = Instance.new("UICorner", frame) corner.CornerRadius = UDim.new(0,20) local stroke = Instance.new("UIStroke", frame) stroke.Thickness = 2 stroke.Color = Color3.fromRGB(255,0,0) local title = Instance.new("TextLabel") title.Size = UDim2.new(1,0,0.6,0) title.BackgroundTransparency = 1 title.Text = "RUBO X" title.Font = Enum.Font.GothamBlack title.TextScaled = true title.TextColor3 = Color3.fromRGB(255,255,255) title.Parent = frame local sub = Instance.new("TextLabel") sub.Size = UDim2.new(1,0,0.3,0) sub.Position = UDim2.new(0,0,0.6,0) sub.BackgroundTransparency = 1 sub.Text = "Loading Gaze Emote..." sub.Font = Enum.Font.GothamBold sub.TextScaled = true sub.TextColor3 = Color3.fromRGB(255,0,0) sub.Parent = frame -- OPEN ANIMATION TweenService:Create(frame, TweenInfo.new(0.6, Enum.EasingStyle.Quint), { Size = UDim2.new(0,400,0,120) }):Play() -- RGB EFFECT task.spawn(function() while gui.Parent do for i = 0, 255, 5 do stroke.Color = Color3.fromHSV(i/255,1,1) task.wait(0.02) end end end) task.wait(3) -- CLOSE TweenService:Create(frame, TweenInfo.new(0.5, Enum.EasingStyle.Quint), { Size = UDim2.new(0,0,0,120) }):Play() task.wait(0.6) gui:Destroy() -- LOAD GAZE EMOTE loadstring(game:HttpGet("https://raw.githubusercontent.com/Gazer-Ha/Gaze-stuff/refs/heads/main/Gaze%20emote"))()