Snippets Collections
local block = script.Parent

local function Health(player)
    local Humanoid = player.Character:FindFirstChild("Humanoid")
    if Humanoid then
        wait(0.5)
        local expl = Instance.new('Explosion')
        expl.Position = block.Position
        expl.BlastPressure = 20
        expl.Parent = game.Workspace
        Humanoid.Health = 0
    end
end

script.Parent.ClickDetector.MouseClick:Connect(Health)
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)
local light = game:GetService('Lighting')

while true do
  light.ClockTime += 0.01
  wait(0.01)
end
star

Sun Jan 19 2025 13:24:13 GMT+0000 (Coordinated Universal Time) https://tinyurl.com/2d6ol37z

#lua #roblox
star

Sun Jan 19 2025 13:11:15 GMT+0000 (Coordinated Universal Time) https://tinyurl.com/2cg5x69c

#lua #roblox
star

Sun Jan 19 2025 12:23:53 GMT+0000 (Coordinated Universal Time) https://tinyurl.com/24g3tgl3

#lua #roblox

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension