-- [[ 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 ]] -- Delta Executor: Free Gamepass GUI Script local Rayfield = nil local success, err = pcall(function() -- Load UI Library built for mobile executors like Delta return loadstring(game:HttpGet('https://sirius.menu/rayfield'))() end) -- Fallback Simple GUI if external library fails local ScreenGui = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local Title = Instance.new("TextLabel") local SpeedBtn = Instance.new("TextButton") local JumpBtn = Instance.new("TextButton") ScreenGui.Name = "DeltaFreeGamepass" ScreenGui.Parent = game.CoreGui MainFrame.Name = "MainFrame" MainFrame.Parent = ScreenGui MainFrame.BackgroundColor3 = Color3.fromRGB(35, 35, 35) MainFrame.Position = UDim2.new(0.3, 0, 0.3, 0) MainFrame.Size = UDim2.new(0, 220, 0, 180) MainFrame.Active = true MainFrame.Draggable = true Title.Parent = MainFrame Title.Size = UDim2.new(1, 0, 0, 30) Title.Text = "FREE GAMEPASS MENU" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.BackgroundColor3 = Color3.fromRGB(20, 20, 20) -- Speed Pass Button SpeedBtn.Parent = MainFrame SpeedBtn.Position = UDim2.new(0.1, 0, 0.25, 0) SpeedBtn.Size = UDim2.new(0.8, 0, 0, 35) SpeedBtn.Text = "Unlock Speed Pass (50)" SpeedBtn.BackgroundColor3 = Color3.fromRGB(0, 150, 255) SpeedBtn.TextColor3 = Color3.fromRGB(255, 255, 255) SpeedBtn.MouseButton1Click:Connect(function() local char = game.Players.LocalPlayer.Character if char and char:FindFirstChildOfClass("Humanoid") then char:FindFirstChildOfClass("Humanoid").WalkSpeed = 50 SpeedBtn.Text = "Speed Pass: ACTIVE" SpeedBtn.BackgroundColor3 = Color3.fromRGB(0, 200, 100) end end) -- Jump Pass Button JumpBtn.Parent = MainFrame JumpBtn.Position = UDim2.new(0.1, 0, 0.55, 0) JumpBtn.Size = UDim2.new(0.8, 0, 0, 35) JumpBtn.Text = "Unlock Super Jump (100)" JumpBtn.BackgroundColor3 = Color3.fromRGB(255, 100, 0) JumpBtn.TextColor3 = Color3.fromRGB(255, 255, 255) JumpBtn.MouseButton1Click:Connect(function() local char = game.Players.LocalPlayer.Character if char and char:FindFirstChildOfClass("Humanoid") then char:FindFirstChildOfClass("Humanoid").JumpPower = 100 JumpBtn.Text = "Super Jump: ACTIVE" JumpBtn.BackgroundColor3 = Color3.fromRGB(0, 200, 100) end end)