道路(Part) の上を歩くほど、プレイヤー(Humanoid)のジャンプ力が上がります。
- Workspace に Part を1つ追加します。道路のように少し長めにします。
- Part に Script を追加します。
local function onTouch(otherPart)
local character = otherPart.Parent
local humanoid = character:FindFirstChildWhichIsA("Humanoid")
if humanoid then -- 上に乗ったのがプレイヤーだったら
humanoid.JumpPower = humanoid.JumpPower + 1
print (humanoid.JumpPower) -- ジャンプ力の数値の確認(不要なら削除)
end
end
script.Parent.Touched:Connect(onTouch)