Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Mouad DZ HUB -- نسخة مجهزة للاستعمال مع Delta Executor مباشرة -- انسخ الكود كامل وحطو في Delta ثم Inject داخل اللعبة
- local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local SpeedButton = Instance.new("TextButton") local JumpButton = Instance.new("TextButton")
- -- Parent GUI ScreenGui.Parent = game:GetService("CoreGui")
- -- 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
- -- 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)
- -- 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)
- -- Functions SpeedButton.MouseButton1Click:Connect(function() local char = game.Players.LocalPlayer.Character if char and char:FindFirstChild("Humanoid") then char.Humanoid.WalkSpeed = 80 -- السرعة end end)
- JumpButton.MouseButton1Click:Connect(function() local char = game.Players.LocalPlayer.Character if char and char:FindFirstChild("Humanoid") then char.Humanoid.JumpPower = 150 -- القفزة end end)
Advertisement
Add Comment
Please, Sign In to add comment