This script isn't running because he needs "function arguements" Help?
So I have a script placed in Workspace as well as a BindableFunction that forces the script to update.
Basically, the script is suppose to remove all weapons if you are on a team. I have scripts that award you weapons if you have a gamepass, and that is why I want this script to remove tools. In case people have these weapons inside the lobby. Anyways, the output says "Workspace.Script:8: function arguments expected near 'for'" I'm actually not sure what a function argument is, I tried the Wiki. I couldn't understand it. If someone could also give a briefing on what that is, it would be very helpful. Here is the script.
01 | local Workspace = script.Parent |
02 | local ForceUpdateFunction = Workspace:WaitForChild( "ForceUpdate" ) |
04 | local function Update() |
05 | local player = game.Players.LocalPlayer |
06 | if player.TeamColor = = game.Teams.Lobby.TeamColor then |
07 | local p = player.Backpack:GetChildren |
13 | function ForceUpdateFunction.OnInvoke() |