Hi all, and Merry Christmas everyone. I'm finally having my first stab at doing some Object Oriented Programming in roblox and have come across a problem when passing objects as arguments into remote events.
The below code shows an example set up.
I have defined a car class with properties position and driver, and created methods TurnLeft and TurnRight. I then instantiate the class in a server script and attempt to pass this object to client side using a remote event.
01 | --module script called Car in game.ReplicatedStorage |
02 |
03 | --Car Class |
04 |
05 | Car = { } |
06 | Car.__index = Car |
07 |
08 |
09 |
10 | function Car.new(position, driver) |
11 | local newcar = { } |
12 | setmetatable (newcar, Car) |
13 |
14 | -- Define properties position and driver |
15 | newcar.Position = position |
.
01 | --server script in workspace |
02 |
03 | Car = require(game.ReplicatedStorage.Car) |
04 |
05 | newcar = Car.new(Vector 3. new( 0 , 10 , 0 ),workspace:WaitForChild( "123marble" )) -- Instantiation |
06 |
07 | -- Create remote event |
08 | local connectButtonsEvent = Instance.new( "RemoteEvent" ) |
09 | connectButtonsEvent.Parent = game.ReplicatedStorage |
10 | connectButtonsEvent.Name = "connectButtonsEvent" |
11 |
12 | -- fire client with argument newcar |
13 | connectButtonsEvent:FireClient(game.Players [ "123marble" ] ,newcar) |
.
01 | --local script in StarterPlayerScripts |
02 |
03 | local connectButtonsEvent = game.ReplicatedStorage:WaitForChild( "connectButtonsEvent" ) |
04 |
05 | function connectButtons(newcar) |
06 | -- printing properties and then calling method TurnLeft |
07 | print (newcar) |
08 | print (newcar.Driver) |
09 | newcar:TurnLeft() |
10 | end |
11 |
12 | connectButtonsEvent.OnClientEvent:Connect(connectButtons) |
The resulting output from the execution of the print statements in the local scipt is this
1 | table: 000001 DAD 3 DE 4 B 00 |
2 | 123 marble |
3 | 12 : 25 : 27.535 - Players. 123 marble.PlayerScripts.LocalScript: 6 : attempt to call method 'TurnLeft' (a nil value) |
4 | 12 : 25 : 27.536 - Stack Begin |
5 | 12 : 25 : 27.536 - Script 'Players.123marble.PlayerScripts.LocalScript' , Line 6 |
6 | 12 : 25 : 27.537 - Stack End |
It can be seen above that the program is able to print the object, and print a property of the object, but cannot call the method TurnLeft. When calling the method TurnLeft I get error nil as if it does not exist.
Question: Why is it that I am able to access the properties, but not the methods of an object when transferring it between server side and client side using a remote event, and how can I access a custom object on server side and client side with its methods in roblox?
Thank you in advance for any replies!
Although I don't understand all those _index and setmetatable() stuff, I'll do my best! Heh...
1 | function Car:TurnLeft() |
2 | --Turn left code |
3 | print ( "turning left" ) |
4 | end |
5 |
6 | function Car:TurnRight() |
7 | --Turn right code |
8 | print ( "turning right" ) |
9 | end |
Something in those lines in the module goes wrong, I assume it doesn't define it correctly? Judging by your output:
table: 000001DAD3DE4B00 123marble 12:25:27.535 - Players.123marble.PlayerScripts.LocalScript:6: attempt to call method 'TurnLeft' (a nil value) 12:25:27.536 - Stack Begin 12:25:27.536 - Script 'Players.123marble.PlayerScripts.LocalScript', Line 6 12:25:27.537 - Stack End
"12:25:27.535 - Players.123marble.PlayerScripts.LocalScript:6: attempt to call method 'TurnLeft' (a nil value)"
Which states that when the localscript calls "TurnLeft", "TurnLeft" doesn't exist (nil) when it calls it from "newcar".
As a noob(me)-fix, because I don't know how else to do it, you could rewrite the module to be like:
01 | --module script called Car in game.ReplicatedStorage |
02 |
03 | --Car Class |
04 |
05 | Car = { } |
06 | Car.__index = Car |
07 |
08 | Car = { |
09 | new = function (position, driver) |
10 | local newcar = { } |
11 | setmetatable (newcar, Car) |
12 |
13 | -- Define properties position and driver |
14 | newcar.Position = position |
15 | newcar.Driver = driver |
Hopefully that helps, if it doesn't, sorry I couldn't!
BUT, luckily, judging by my knowledge, it has NOTHING to do with server-client interactions.
If you're wondering why I have two "Cars = {}" it is so the table is defined in the script, so the script itself and the table functions can use Cars and any functions or tables in it.