Mouadbenhabib

Mouad DZ HUB

Aug 29th, 2025
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- Mouad DZ HUB -- نسخة مجهزة للاستعمال مع Delta Executor مباشرة -- انسخ الكود كامل وحطو في Delta ثم Inject داخل اللعبة
  2.  
  3. local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local SpeedButton = Instance.new("TextButton") local JumpButton = Instance.new("TextButton")
  4.  
  5. -- Parent GUI ScreenGui.Parent = game:GetService("CoreGui")
  6.  
  7. -- Frame settings Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.fromRGB(30,30,30) Frame.Size = UDim2.new(0,200,0,120) Frame.Position = UDim2.new(0.3,0,0.3,0) Frame.Active = true Frame.Draggable = true
  8.  
  9. -- Speed button SpeedButton.Parent = Frame SpeedButton.Text = "Boost Speed" SpeedButton.Size = UDim2.new(0,180,0,40) SpeedButton.Position = UDim2.new(0,10,0,10) SpeedButton.BackgroundColor3 = Color3.fromRGB(50,50,200) SpeedButton.TextColor3 = Color3.fromRGB(255,255,255)
  10.  
  11. -- Jump button JumpButton.Parent = Frame JumpButton.Text = "Boost Jump" JumpButton.Size = UDim2.new(0,180,0,40) JumpButton.Position = UDim2.new(0,10,0,60) JumpButton.BackgroundColor3 = Color3.fromRGB(200,50,50) JumpButton.TextColor3 = Color3.fromRGB(255,255,255)
  12.  
  13. -- Functions SpeedButton.MouseButton1Click:Connect(function() local char = game.Players.LocalPlayer.Character if char and char:FindFirstChild("Humanoid") then char.Humanoid.WalkSpeed = 80 -- السرعة end end)
  14.  
  15. JumpButton.MouseButton1Click:Connect(function() local char = game.Players.LocalPlayer.Character if char and char:FindFirstChild("Humanoid") then char.Humanoid.JumpPower = 150 -- القفزة end end)
  16.  
  17.  
Advertisement
Add Comment
Please, Sign In to add comment