-- [[ Rscripts Risk Notice ]] -- This script is not verified by rscripts.net. Deal with caution. -- -- Stay safe: -- • Never log in on unofficial Roblox sites or lookalike domains. -- • Real Roblox links use roblox.com (check the .com ending). -- • Treat fake Roblox login / "claim reward" pages as phishing. -- [[ End Rscripts Risk Notice ]] local function chr(codes) local result = "" for _, code in ipairs(codes) do result = result .. string.char(code) end return result end local egg_name_part = chr({101,103,103}) local steal_name_part = chr({115,116,101,97,108}) local teleport_btn_text = chr({84,101,108,101,112,111,114,116}) local steal_btn_text = chr({83,116,101,97,108}) local anti_afk_text = chr({65,110,116,105,32,65,70,75}) local dragon_image_id = "rbxassetid://1234567890" local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = chr({71,85,73}) .. "_" .. math.random(1000, 9999) ScreenGui.ResetOnSpawn = false ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling ScreenGui.Parent = LocalPlayer:WaitForChild("PlayerGui") local MainFrame = Instance.new("Frame") MainFrame.Size = UDim2.new(0, 200, 0, 130) MainFrame.Position = UDim2.new(0.5, -100, 0.5, -65) MainFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) MainFrame.BorderSizePixel = 0 MainFrame.Active = true MainFrame.Draggable = true MainFrame.Parent = ScreenGui local SizeConstraint = Instance.new("UISizeConstraint") SizeConstraint.MinSize = Vector2.new(150, 100) SizeConstraint.MaxSize = Vector2.new(400, 300) SizeConstraint.Parent = MainFrame local UICorner = Instance.new("UICorner") UICorner.CornerRadius = UDim.new(0, 8) UICorner.Parent = MainFrame local DragonBackground = Instance.new("ImageLabel") DragonBackground.Size = UDim2.new(1, 0, 1, 0) DragonBackground.BackgroundTransparency = 1 DragonBackground.Image = dragon_image_id DragonBackground.ScaleType = Enum.ScaleType.Crop DragonBackground.Parent = MainFrame local Title = Instance.new("TextLabel") Title.Size = UDim2.new(1, 0, 0, 20) Title.BackgroundTransparency = 1 Title.Font = Enum.Font.GothamBold Title.Text = chr({69,103,103,32,84,111,111,108}) Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextSize = 14 Title.Parent = MainFrame local WidthLabel = Instance.new("TextLabel") WidthLabel.Size = UDim2.new(0, 30, 0, 18) WidthLabel.Position = UDim2.new(0, 10, 0, 25) WidthLabel.BackgroundTransparency = 1 WidthLabel.Font = Enum.Font.Gotham WidthLabel.Text = "W:" WidthLabel.TextColor3 = Color3.fromRGB(200, 200, 200) WidthLabel.TextSize = 12 WidthLabel.TextXAlignment = Enum.TextXAlignment.Left WidthLabel.Parent = MainFrame local WidthBox = Instance.new("TextBox") WidthBox.Size = UDim2.new(0, 45, 0, 18) WidthBox.Position = UDim2.new(0, 35, 0, 25) WidthBox.BackgroundColor3 = Color3.fromRGB(50, 50, 50) WidthBox.BorderSizePixel = 0 WidthBox.Font = Enum.Font.Gotham WidthBox.Text = "200" WidthBox.TextColor3 = Color3.fromRGB(255, 255, 255) WidthBox.TextSize = 12 WidthBox.Parent = MainFrame WidthBox.FocusLost:Connect(function() local val = tonumber(WidthBox.Text) if val and val >= 150 and val <= 400 then MainFrame.Size = UDim2.new(0, val, 0, MainFrame.Size.Y.Offset) end end) local HeightLabel = Instance.new("TextLabel") HeightLabel.Size = UDim2.new(0, 30, 0, 18) HeightLabel.Position = UDim2.new(0, 90, 0, 25) HeightLabel.BackgroundTransparency = 1 HeightLabel.Font = Enum.Font.Gotham HeightLabel.Text = "H:" HeightLabel.TextColor3 = Color3.fromRGB(200, 200, 200) HeightLabel.TextSize = 12 HeightLabel.TextXAlignment = Enum.TextXAlignment.Left HeightLabel.Parent = MainFrame local HeightBox = Instance.new("TextBox") HeightBox.Size = UDim2.new(0, 45, 0, 18) HeightBox.Position = UDim2.new(0, 115, 0, 25) HeightBox.BackgroundColor3 = Color3.fromRGB(50, 50, 50) HeightBox.BorderSizePixel = 0 HeightBox.Font = Enum.Font.Gotham HeightBox.Text = "130" HeightBox.TextColor3 = Color3.fromRGB(255, 255, 255) HeightBox.TextSize = 12 HeightBox.Parent = MainFrame HeightBox.FocusLost:Connect(function() local val = tonumber(HeightBox.Text) if val and val >= 100 and val <= 300 then MainFrame.Size = UDim2.new(0, MainFrame.Size.X.Offset, 0, val) end end) local function findEgg() for _, v in pairs(Workspace:GetDescendants()) do if v:IsA("BasePart") and string.find(v.Name:lower(), egg_name_part) then return v end end return nil end local TeleportBtn = Instance.new("TextButton") TeleportBtn.Size = UDim2.new(1, -20, 0, 25) TeleportBtn.Position = UDim2.new(0, 10, 0, 48) TeleportBtn.BackgroundColor3 = Color3.fromRGB(70, 130, 50) TeleportBtn.BorderSizePixel = 0 TeleportBtn.Font = Enum.Font.GothamBold TeleportBtn.Text = teleport_btn_text TeleportBtn.TextColor3 = Color3.fromRGB(255, 255, 255) TeleportBtn.TextSize = 13 TeleportBtn.Parent = MainFrame TeleportBtn.MouseButton1Click:Connect(function() local egg = findEgg() if egg and LocalPlayer.Character then LocalPlayer.Character:MoveTo(egg.Position + Vector3.new(0, 3, 0)) end end) local StealBtn = Instance.new("TextButton") StealBtn.Size = UDim2.new(1, -20, 0, 25) StealBtn.Position = UDim2.new(0, 10, 0, 78) StealBtn.BackgroundColor3 = Color3.fromRGB(180, 60, 60) StealBtn.BorderSizePixel = 0 StealBtn.Font = Enum.Font.GothamBold StealBtn.Text = steal_btn_text StealBtn.TextColor3 = Color3.fromRGB(255, 255, 255) StealBtn.TextSize = 13 StealBtn.Parent = MainFrame StealBtn.MouseButton1Click:Connect(function() for _, v in pairs(game:GetDescendants()) do if v:IsA("RemoteEvent") then local n = v.Name:lower() if string.find(n, egg_name_part) or string.find(n, steal_name_part) then pcall(function() v:FireServer(steal_name_part, LocalPlayer.Character, egg_name_part) end) break end end end end) local AntiAFKBtn = Instance.new("TextButton") AntiAFKBtn.Size = UDim2.new(1, -20, 0, 25) AntiAFKBtn.Position = UDim2.new(0, 10, 0, 108) AntiAFKBtn.BackgroundColor3 = Color3.fromRGB(60, 60, 120) AntiAFKBtn.BorderSizePixel = 0 AntiAFKBtn.Font = Enum.Font.Gotham AntiAFKBtn.Text = anti_afk_text AntiAFKBtn.TextColor3 = Color3.fromRGB(255, 255, 255) AntiAFKBtn.TextSize = 12 AntiAFKBtn.Parent = MainFrame AntiAFKBtn.MouseButton1Click:Connect(function() if not _G.AntiAFKActive then _G.AntiAFKActive = true RunService.Heartbeat:Connect(function() if _G.AntiAFKActive and LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("Humanoid") then LocalPlayer.Character.Humanoid:Move(Vector3.new(0, 0, 0.1), false) task.wait(0.5) LocalPlayer.Character.Humanoid:Move(Vector3.new(0, 0, -0.1), false) end end) end end)