遊テックプログラミング教室

プログラミングノートNOTE

【Roblox】ジャンプするブロック【ロブロックス】

【Roblox】ジャンプするブロック【ロブロックス】

触れるとジャンプするブロックのスクリプトです。

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)