我收到第3行中的错误,'='预计在'local'附近
我正在尝试这个:local = fireball = game.ServerStorage.Fireball.
我输入了我认为需要去的等号,但它不起作用...
这是代码:
local cannon = script.Parent
local barrel = script Workspace.cannontrap.TrapBarrel
local = fireball = game.ServerStorage.Fireball
while true do
local fireballCopy = fireball:Clone()
fireballCopy.Parent = game.Workspace
fireballCopy.Position = barrel.Position
fireballCopy.Velocity = Vector3.new(-80,0,0)
wait(8)
end
(第3行不符合此错误)。
答案 0 :(得分:2)
错误消息很明确。这一行
local = fireball = game.ServerStorage.Fireball
应该是
local fireball = game.ServerStorage.Fireball