部分移向屏幕?
Part moving towards screen?
该部分应该移动到鼠标的位置,它几乎可以正常工作,但问题是它移向了我的屏幕...
本地脚本:
local moveevent = script:WaitForChild("MoveEvent")
script.Parent.Parent.Equipped:Connect(function(mouse)
mouse.Move:Connect(function()
moveevent:FireServer(mouse.Hit.p)
end)
end)
脚本:
local moveevent = script.Parent:WaitForChild("MoveEvent")
moveevent.OnServerEvent:Connect(function(plr, mousepos)
workspace:WaitForChild("Spawnpart").Position = mousepos
end)
在本地脚本中:
mouse.TargetFilter = workspace:WaitForChild("Spawnpart")
发生的事情是您的鼠标击中了零件而不是后面的零件。 Read more
该部分应该移动到鼠标的位置,它几乎可以正常工作,但问题是它移向了我的屏幕...
本地脚本:
local moveevent = script:WaitForChild("MoveEvent")
script.Parent.Parent.Equipped:Connect(function(mouse)
mouse.Move:Connect(function()
moveevent:FireServer(mouse.Hit.p)
end)
end)
脚本:
local moveevent = script.Parent:WaitForChild("MoveEvent")
moveevent.OnServerEvent:Connect(function(plr, mousepos)
workspace:WaitForChild("Spawnpart").Position = mousepos
end)
在本地脚本中:
mouse.TargetFilter = workspace:WaitForChild("Spawnpart")
发生的事情是您的鼠标击中了零件而不是后面的零件。 Read more