Attempt to index number with 'Character'

  1. What do you want to achieve? Fix an error that Idk how to fix or how did it even occur in the first place

  2. What is the issue?

  3. What solutions have you tried so far? Tried to look it up in dev forum but no similar issue

here’s the script

local player = game.Players.LocalPlayer
local datafolder = player:WaitForChild("PlayerDataFolder")
local Inventory = datafolder.Inventory
local itemname = script.Parent.Parent.Name
local item = Inventory[itemname]

local remote = game.ReplicatedStorage.Items.WeaponRemotes.Equip



script.Parent.MouseButton1Up:Connect(function(player)
	
	if item.Value > 0 then
		if not player.Character:FindFirstChildWhichIsA("Tool") then
			remote:FireServer(itemname)
		end
	end
end)

there

local player = game.Players.LocalPlayer
local datafolder = player:WaitForChild("PlayerDataFolder")
local Inventory = datafolder.Inventory
local itemname = script.Parent.Parent.Name
local item = Inventory[itemname]

local remote = game.ReplicatedStorage.Items.WeaponRemotes.Equip
local character = player.Character

if not character or not character.Parent then
	character = player.CharacterAdded:Wait()
end


script.Parent.MouseButton1Up:Connect(function(player)

	if item.Value > 0 then
		if not character:FindFirstChildOfClass("Tool") then
			remote:FireServer(itemname)
		end
	end
end)
1 Like

The parameter for MouseButton1Up is the location of the mouse. Simply remove the player parameter and your issue will be solved

2 Likes

there could be a problem getting the character, make sure to add like a “wait” system for the character.

1 Like

just noticed it, im so ahhhh… thanks!

The character isn’t the issue.

If the issue is solved mark the message as the solution so people know it’s been solved

1 Like