触れるとジャンプするブロックのスクリプトです。
local triggerPart = script.Parent
local function jumpPlayer(otherPart)
local partParent = otherPart.Parent
local humanoid = partParent:FindFirstChild("Humanoid")
if humanoid then
humanoid.Jump = true
end
end
triggerPart.Touched:Connect(jumpPlayer)