-- 🎯 REIS HUB - DELTA GARANTİLİ local ScreenGui = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local LogoImage = Instance.new("ImageLabel") local Title = Instance.new("TextLabel") ScreenGui.Parent = game:GetService("CoreGui") ScreenGui.Name = "ReisHubDelta" MainFrame.Parent = ScreenGui MainFrame.Size = UDim2.new(0, 400, 0, 500) MainFrame.Position = UDim2.new(0, 50, 0, 50) MainFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 20) MainFrame.Active = true MainFrame.Draggable = true -- LOGO LogoImage.Parent = MainFrame LogoImage.Size = UDim2.new(1, 0, 0, 150) LogoImage.Image = "rbxassetid://106113675537942" LogoImage.BackgroundTransparency = 1 -- BAŞLIK Title.Parent = MainFrame Title.Size = UDim2.new(1, 0, 0, 40) Title.Position = UDim2.new(0, 0, 0, 150) Title.Text = "🎯 REIS HUB v2.0" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.BackgroundColor3 = Color3.fromRGB(0, 0, 0) Title.Font = Enum.Font.Michroma Title.TextSize = 20 -- BUTONLARI OLUŞTUR local function createButton(name, url, position) local button = Instance.new("TextButton") button.Parent = MainFrame button.Size = UDim2.new(0.4, 0, 0, 40) button.Position = position button.Text = name button.BackgroundColor3 = Color3.fromRGB(40, 40, 40) button.TextColor3 = Color3.fromRGB(255, 255, 255) button.Font = Enum.Font.Michroma button.TextSize = 14 -- DELTA İÇİN DİREKT EVENT EKLE button.MouseButton1Click:Connect(function() loadstring(game:HttpGet(url))() end) return button end -- BUTONLARI EKLE createButton("🌀 INVISIBLE", "https://rawscripts.net/raw/Universal-Script-Invisible-script-20557", UDim2.new(0.05, 0, 0.25, 0)) createButton("💣 RC7", "https://raw.githubusercontent.com/CoreGui/Scripts/main/RC7", UDim2.new(0.55, 0, 0.25, 0)) createButton("⚔️ CADUCUA", "https://pastebin.com/raw/XJeBNe0s", UDim2.new(0.05, 0, 0.35, 0)) createButton("🎨 SPRAY", "https://raw.githubusercontent.com/srzmnx/OLD-roblox-scripts/refs/heads/master/spray%20can.txt", UDim2.new(0.55, 0, 0.35, 0)) createButton("👻 NOCLIP", "https://pastebin.com/raw/wQmCgz2Y", UDim2.new(0.05, 0, 0.45, 0)) createButton("🚗 TOY CAR", "https://pastebin.com/raw/wQmCgz2Y", UDim2.new(0.55, 0, 0.45, 0)) createButton("💥 FLING", "https://raw.githubusercontent.com/Thuan6565/Script/refs/heads/main/FeFlingGui", UDim2.new(0.05, 0, 0.55, 0)) -- ANTI-CHEAT BUTONU (ÖZEL) local antiCheatBtn = createButton("🛡️ ANTI-CHEAT", "https://pastebin.com/raw/XXXXXXXX", UDim2.new(0.55, 0, 0.55, 0)) antiCheatBtn.MouseButton1Click:Connect(function() -- ANTI-CHEAT BYPASS KODU BURAYA print("🎯 ANTI-CHEAT BYPASS AKTİF!") end) print("🎯 REIS HUB - DELTA UYUMLU AKTİF!") print("🖼️ Logo: 106113675537942")