Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

"FireClient: player argument must be a Player object" Error?

Asked by 5 years ago

This question has been solved by the original poster.

My Idle animation won't stop working because my getPlayer function won't get the actual player? I'm not sure why it won't get the player!?

Serverscript in tool

001local Tool = script.Parent
002local Remote = Tool:WaitForChild("Remote")
003local Handle = Tool:WaitForChild("Handle")
004local Mesh = Handle:WaitForChild("Mesh")
005 
006 
007 
008local Equipping = false
009local Grip = nil
010 
011local StraightMeshData = "http://www.roblox.com/asset/?id=193827643"
012local StraightGripPos = Vector3.new(0, 0, 1.5)
014local BentGripPos = Vector3.new(0, 0.6, 0.5)
015local Bent = true
View all 107 lines...
0
can you try printing out: print(getPlayer()) and then print(getPlayer().Parent) ? royaltoe 5144 — 5y
0
Did you try debugging? Maybe using the print function at certain points in your getPlayer() function? Or after it's called? joshmatt2244 28 — 5y
0
do u even read bruh i just said that royaltoe 5144 — 5y
0
You asked if you could. I said you can. Stop being arrogant, you came here for answers, your script is messy and it hurts my eyes to read it. If you want to solve your issue, learn to script like everyone who scripts did. It's called reading the roblox developer API page :) joshmatt2244 28 — 5y
View all comments (4 more)
0
Oops, sorry. I'm not the original poster. I also meant the 'do u even read' comment sarcastically since I already told him to try printing but, bad wording by me and you explained well. Srry. royaltoe 5144 — 5y
0
I fixed it Jomeliter 55 — 5y
0
yay royaltoe 5144 — 5y
0
please let ppl know what you did to fix it in the comments or answer tab. i'll mark your solution as the answer. royaltoe 5144 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago

I fixed this error by changing the GetPlayer() to script.Parent.

Ad

Answer this question