"FireClient: player argument must be a Player object" Error?
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
001 | local Tool = script.Parent |
002 | local Remote = Tool:WaitForChild( "Remote" ) |
003 | local Handle = Tool:WaitForChild( "Handle" ) |
004 | local Mesh = Handle:WaitForChild( "Mesh" ) |
008 | local Equipping = false |
012 | local StraightGripPos = Vector 3. new( 0 , 0 , 1.5 ) |
014 | local BentGripPos = Vector 3. new( 0 , 0.6 , 0.5 ) |
017 | local AttackAble = true |
018 | local AttackRestTime = 1 |
019 | local AttackVictims = { } |
020 | local AttackWindow = 0.66 |
021 | local AttackDamaging = false |
022 | local AttackWindup = 0.1 |
025 | local char = script.Parent.Parent |
026 | return game:GetService( "Players" ):GetPlayerFromCharacter(char) |
029 | function contains(t, v) |
030 | for _, val in pairs (t) do |
038 | function tagHuman(human) |
039 | local tag = Instance.new( "ObjectValue" ) |
040 | tag.Value = getPlayer() |
043 | game:GetService( "Debris" ):AddItem(tag) |
048 | if not AttackAble then return end |
052 | delay(AttackRestTime, function () |
057 | delay(AttackWindup, function () |
059 | AttackDamaging = true |
060 | delay(AttackWindow, function () |
061 | AttackDamaging = false |
067 | local t = math.random( 1 , 2 ) |
069 | Remote:FireClient(getPlayer(), "PlayAnimation" , "Swing1" ) |
070 | Handle.Trail.Enabled = true |
072 | Remote:FireClient(getPlayer(), "PlayAnimation" , "Swing2" ) |
073 | Handle.Trail.Enabled = true |
079 | if Equipping then return end |
083 | Remote:FireClient(getPlayer(), "PlayAnimation" , "Idle" ) |
084 | Handle.Trail.Enabled = false |
094 | Remote:FireClient(getPlayer(), "StopAnimation" , "Idle" ) |
097 | function onRemote(player, func, ...) |
098 | if player ~ = getPlayer() then return end |
100 | if func = = "NormalStart" then |
105 | Tool.Equipped:connect(onEquip) |
106 | Tool.Unequipped:connect(onUnequip) |
107 | Remote.OnServerEvent:connect(onRemote) |