このブロックに乗るとプレイヤーがブロック上を自動で移動する。
スクリプトの数値を変更して移動速度などが変更可能。
進む方向と矢印の方向の合致に注意が必要。
このモデルをワークスペースに入れる。
Script A
while true do
script.Parent.Velocity = script.Parent.CFrame.lookVector *40
wait(0.1)
end
function onTouched(part)
local h = part.Parent:findFirstChild("Humanoid")
if h~=nil then
h.Health = h.Health -20
end
end
script.Parent.Touched:connect(onTouched)
DecalのアセットURL
http://www.roblox.com/asset/?id=3329170287