Boost

PHOTO EMBED

Sun Jan 19 2025 13:11:15 GMT+0000 (Coordinated Universal Time)

Saved by @citizen5ive #lua #roblox

local clickDetector = script.Parent.ClickDetector

function onMouseClick(Player)
    local humanoid = Player.Character:findFirstChild("Humanoid")
    if humanoid then
        -- włączanie super skoku
        humanoid.UseJumpPower = true
        -- ustawienie siły skoku
        humanoid.JumpPower = 140
        humanoid.WalkSpeed = 70
        -- wyłączanie super skoku
        wait(30)
        humanoid.UseJumpPower = false
        humanoid.WalkSpeed = 16
    end
end

clickDetector.MouseClick:connect(onMouseClick)
content_copyCOPY

dodaj skrypt do obiektu np. pieniążka dodaj do tego samego obiektu ClickDetector po kliknięciu w obiekt otrzymasz boosty

https://tinyurl.com/2cg5x69c