-- REDDOG SCRIPT LIBRARY (FIX FINAL) -- Mobile & PC local Players = game:GetService("Players") local Player = Players.LocalPlayer local PlayerGui = Player:WaitForChild("PlayerGui") -- CLEAN OLD UI if PlayerGui:FindFirstChild("ReddogUI") then PlayerGui.ReddogUI:Destroy() end -------------------------------------------------- -- SCREEN GUI -------------------------------------------------- local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "ReddogUI" ScreenGui.ResetOnSpawn = false ScreenGui.Parent = PlayerGui -------------------------------------------------- -- MAIN FRAME -------------------------------------------------- local Main = Instance.new("Frame") Main.Size = UDim2.fromOffset(300, 360) Main.Position = UDim2.fromScale(0.5, 0.5) Main.AnchorPoint = Vector2.new(0.5, 0.5) Main.BackgroundColor3 = Color3.fromRGB(120, 20, 20) Main.BorderSizePixel = 0 Main.Active = true Main.Draggable = true Main.Parent = ScreenGui Instance.new("UICorner", Main).CornerRadius = UDim.new(0, 14) -------------------------------------------------- -- HEADER -------------------------------------------------- local Header = Instance.new("Frame") Header.Size = UDim2.new(1, 0, 0, 45) Header.BackgroundTransparency = 1 Header.Parent = Main local Title = Instance.new("TextLabel") Title.Size = UDim2.new(1, -45, 1, 0) Title.Position = UDim2.fromOffset(10, 0) Title.BackgroundTransparency = 1 Title.Text = "REDDOG LIBRARY" Title.Font = Enum.Font.GothamBold Title.TextSize = 18 Title.TextColor3 = Color3.fromRGB(255,255,255) Title.TextXAlignment = Enum.TextXAlignment.Left Title.Parent = Header local Close = Instance.new("TextButton") Close.Size = UDim2.fromOffset(32, 32) Close.Position = UDim2.new(1, -36, 0, 6) Close.Text = "X" Close.Font = Enum.Font.GothamBold Close.TextSize = 18 Close.TextColor3 = Color3.fromRGB(255,255,255) Close.BackgroundColor3 = Color3.fromRGB(180, 40, 40) Close.BorderSizePixel = 0 Close.Parent = Header Instance.new("UICorner", Close).CornerRadius = UDim.new(1,0) -------------------------------------------------- -- SCROLL HOLDER -------------------------------------------------- local Holder = Instance.new("ScrollingFrame") Holder.Size = UDim2.new(1, -20, 1, -60) Holder.Position = UDim2.fromOffset(10, 50) Holder.CanvasSize = UDim2.new(0,0,0,0) Holder.ScrollBarImageTransparency = 0.3 Holder.BackgroundTransparency = 1 Holder.BorderSizePixel = 0 Holder.Parent = Main local List = Instance.new("UIListLayout") List.Padding = UDim.new(0, 10) List.Parent = Holder -------------------------------------------------- -- BUTTON FUNCTION -------------------------------------------------- local function Button(text, callback) local B = Instance.new("TextButton") B.Size = UDim2.new(1, 0, 0, 42) B.BackgroundColor3 = Color3.fromRGB(180, 40, 40) B.Text = text B.Font = Enum.Font.GothamBold B.TextSize = 14 B.TextColor3 = Color3.fromRGB(255,255,255) B.BorderSizePixel = 0 B.Parent = Holder Instance.new("UICorner", B).CornerRadius = UDim.new(0, 10) B.MouseButton1Click:Connect(function() pcall(callback) end) end -------------------------------------------------- -- BUTTONS (LENGKAP & FIX) -------------------------------------------------- Button("Text Reddog Here", function() loadstring(game:HttpGet("https://pastebin.com/raw/c1UZZNu6"))() end) Button("Faceless", function() loadstring(game:HttpGet("https://pastebin.com/raw/pLLcKKjJ"))() end) Button("Infinite Yield", function() loadstring(game:HttpGet("https://pastebin.com/raw/Wf9KGyQi"))() end) Button("Tool Color Reddog", function() loadstring(game:HttpGet("https://pastebin.com/raw/xbz2psmd"))() end) Button("Blackhole", function() loadstring(game:HttpGet("https://pastebin.com/raw/hHFUdeE7"))() end) -- ✅ YANG TADI HILANG (SUDAH BALIK) Button("Bring Parts", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/seseskrt-ops/flingerwow/refs/heads/main/unachored%20part%20grabber.lua"))() end) Button("Fe Fly", function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Fe-fly-Script-9712"))() end) -------------------------------------------------- -- AUTO SCROLL -------------------------------------------------- List:GetPropertyChangedSignal("AbsoluteContentSize"):Connect(function() Holder.CanvasSize = UDim2.new(0,0,0,List.AbsoluteContentSize.Y + 10) end) -------------------------------------------------- -- MINI BUTTON -------------------------------------------------- local Mini = Instance.new("ImageButton") Mini.Size = UDim2.fromOffset(60, 60) Mini.Position = UDim2.fromScale(0.05, 0.55) Mini.BackgroundColor3 = Color3.fromRGB(150, 20, 20) Mini.BorderColor3 = Color3.fromRGB(90, 0, 0) Mini.BorderSizePixel = 2 Mini.Image = "rbxassetid://84373615542748" Mini.Visible = false Mini.Active = true Mini.Draggable = true Mini.Parent = ScreenGui Instance.new("UICorner", Mini).CornerRadius = UDim.new(0, 14) -------------------------------------------------- -- TOGGLE -------------------------------------------------- Close.MouseButton1Click:Connect(function() Main.Visible = false Mini.Visible = true end) Mini.MouseButton1Click:Connect(function() Main.Visible = true Mini.Visible = false end)