I cannot understand what this is trying to tell me. It's not very unclear and I have already searched for help but no posts helped me. Basically I have an object value called TheVehicle in every player's character but I get an error trying to do this:
local base = c["TheVehicle"].Value
Help is appreciated!
Attempt to index number with [value] means you are trying to index, or get a 'sub-value' from a number value. As a number does not have anything to index, it throws an error.
In your case, the variable c is a number value, and your are attempting to index it with a string. In other words, you are treating a number as a table.