このブロックを踏むと大きくジャンプする。
スクリプト内のジャンプパワーを変更することでジャンプ力の調節が可能。
このモデルをワークスペースに入れる。
Script A
local booster = script.Parent
local function hitted(part)
local cs = part.Parent
if game.Players:GetPlayerFromCharacter(cs) then
cs.Humanoid.JumpPower = 150
wait(3)
cs.Humanoid.JumpPower = 50
end
end
booster.Touched:Connect(hitted)