I was replying to a topic on the DevForum and I got a Solution but then somebody else had a better Solution to the problem so the owner of the topic added a Solution to that user. However, I had found that there were two Solutions showing:
I don’t know if this was a loading error and the page didn’t load properly, or if it was because the owner changed the Solution to the other user really quickly.
1 Like
This is likely just a displaying bug, as you do not have this counted as solution on your profile.
3 Likes
Yeah. It was probably because the owner of the topic changed the Solution to quick for the system.
2 Likes
LuaCow
(LuaCow)
July 6, 2022, 6:13pm
#5
AustnBlox:
I was replying to a topic on the DevForum and I got a Solution but then somebody else had a better Solution to the problem so the owner of the topic added a Solution to that user. However, I had found that there were two Solutions showing:
I don’t know if this was a loading error and the page didn’t load properly, or if it was because the owner changed the Solution to the other user really quickly.
Would you mind linking to this topic?
1 Like
As the first person mentioned seemed to be just a visual bug.
function fire(hit)
local c = hit.Parent
if c:FindFirstChildWhichIsA("Humanoid") then
local h = c:FindFirstChildWhichIsA("Humanoid")
h:MoveTo(workspace.FirePosition)
task.wait(0.1)
end
end
script.Parent.Touched:Connect(fire)
I think you can use :PivotTo() instead of :MoveTo()
1 Like
Thanks for the reply.
It could have been a visual bug as @SillyMeTimbers said, but just incase something isn’t right, here is the link to the topic:
What do you want to achieve?
Move the player to the Fireposition part
What is the issue?
I am getting the error;
Moveto is not a valid member of Humanoid “Workspace.nick2222.Humanoid”
Stack Begin - Studio
Script ‘Workspace.Fire.Script’, Line 5 - function fire
Stack End
What solutions have you tried so far?
I havent tried the Moveto function before so this is my first experience with it
Its very simple, i am wanting to make a cannon fire the players to a certain position. i or…
1 Like