I get a error when I try to change a speed of something when a value is changed. The error stats "attempt to index field 'Value' (a number value)".
When I execute this code I get that error:
1 | fp.Value.Changed:connect( function () |
2 | for i = 0 , 360 , 1 do |
3 | p.Orientation = Vector 3. new( 0 , i, - 90 ) |
4 | wait(fp.Value) |
5 | end |
6 | end ) |
fp is the NumberValue in ReplicatedStorage.
Before you suggest that I have not attached a value to fp, I have.
Please clarify what that error means and how to avoid it in the future. Thanks :D!
You need to use instance.Changed
not instance.Value.Changed
, if you use instance.Value.Changed
will return this error, for fix this only remove .Value in line 1
Example:
1 | local instance = workspace.MyValue |
2 | instance.Changed:Connect( function () |
3 | print ( "MyValue changed" ) |
4 | end ) |
Also :connect
is deprecated, use :Connect
Fixed script:
1 | fp.Changed:Connect( function () |
2 | for i = 0 , 360 , 1 do |
3 | p.Orientation = Vector 3. new( 0 , i, - 90 ) |
4 | wait(fp.Value) |
5 | end |
6 | end ) |