')' 预期(toclose '(' 在列453)邻近 '结束'
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了')' 预期(toclose '(' 在列453)邻近 '结束'相关的知识,希望对你有一定的参考价值。
我找不到的地方)应该去。请帮我解决一下这个。谢谢 :)
ShootButton.MouseButton1Click:Connect(function()
local Person = NameShoot.Text
local A_1 = "right"
local A_2 = Vector3.new(-304.910004, 792.936279, -1810.74658)
local A_3 = Vector3.new(-321.448303, 792.981812, -1801.7301)
local A_4 = 0.0094182577133179
local A_5 = 2000
local A_6 =
game:GetService("Workspace").TopPiece.Suit.RightHand.Thruster.Exhaust
local A_7 = game:GetService("Workspace")[Person].Suit.RightUpperArm.Union
local Event =
game:GetService("Players").TopPiece.Backpack.suitControl.Assets.Events.fireR
epulsor
Event:InvokeServer(A_1, A_2, A_3, A_4, A_5, A_6, A_7)
end
end)
答案
现在我不知道卢阿,但我的猜测是在最后改变这种
end
end)
至
end)
它看起来像你结束与第一端的功能,但收盘第二端的括号当函数已经完成。
另一答案
如果缩进你的代码一致,那么你应该得到更少的这些类型的问题...
ShootButton.MouseButton1Click:Connect(
function()
local Person = NameShoot.Text
local A_1 = "right"
local A_2 = Vector3.new(-304.910004, 792.936279, -1810.74658)
local A_3 = Vector3.new(-321.448303, 792.981812, -1801.7301)
local A_4 = 0.0094182577133179
local A_5 = 2000
local A_6 = game:GetService("Workspace").TopPiece.Suit.RightHand.Thruster.Exhaust
local A_7 = game:GetService("Workspace")[Person].Suit.RightUpperArm.Union
local Event = game:GetService("Players").TopPiece.Backpack.suitControl.Assets.Events.fireRepulsor
Event:InvokeServer(A_1, A_2, A_3, A_4, A_5, A_6, A_7)
end
)
有对end
一个function
并为Connect
函数调用一个右括号这是显而易见的。
你也可以做到这一点?
ShootButton.MouseButton1Click:Connect(function()
local Person = NameShoot.Text
local A_1 = "right"
local A_2 = Vector3.new(-304.910004, 792.936279, -1810.74658)
local A_3 = Vector3.new(-321.448303, 792.981812, -1801.7301)
local A_4 = 0.0094182577133179
local A_5 = 2000
local A_6 = game:GetService("Workspace").TopPiece.Suit.RightHand.Thruster.Exhaust
local A_7 = game:GetService("Workspace")[Person].Suit.RightUpperArm.Union
local Event = game:GetService("Players").TopPiece.Backpack.suitControl.Assets.Events.fireRepulsor
Event:InvokeServer(A_1, A_2, A_3, A_4, A_5, A_6, A_7)
end)
..但我个人认为第一格式更清晰。
以上是关于')' 预期(toclose '(' 在列453)邻近 '结束'的主要内容,如果未能解决你的问题,请参考以下文章
无法将'ViewController.Type'类型的值转换为预期的参数类型'UIViewController'
为什么我一直得到“错误:在'案件'之前预期不合格的身份'”?
Lync SDK 2013 - 加入会议抛出'价值不在预期范围内。'
为什么这个警告“预期类型'int'(匹配泛型类型'_T'),得到'Dict [str,None]'而不是”?