-2
我真的在ROBLOX製作腳本,針對我的UFO,其中每當UFO從高空經過它播放音頻。我做了如下腳本需要幫助的ROBLOX腳本(LUA)
while true do
if script.Parent.Parent.Velocity.Magnitude>10 then
if local h = hit.Parent:FindFirstChild("Humanoid")
then script.parent:play()
wait(5)
else
wait()
end
wait()
end
任何更正將是一個真正的幫助!
謝謝!
你想要什麼樣的建議? – Vyacheslav
我不認爲你應該使用'while'循環。我以前從未爲Roblox製作過插件,但是'while'循環會阻止。從[this](http://wiki.roblox.com/index.php?title=Tutorial:Plugins)教程看,它看起來像你想看看鉤子 – DavisDude
他從來沒有提到任何關於插件@DavisDude – warspyking