I constructed an event that fires to the client and checks whether or not the client entered a correct code. When the server fires the event with specific parameters, the client doesn't receive the parameters and returns it as 'nil'. I don't know why the client is not receiving these parameters as I have never encountered it in the past. Here's some of the code.
01 | --Server-- |
02 | for i,v in pairs (TwitterCodes) do |
03 | if i = = tostring (code) then |
04 | print (player.Name.. " redeemed code: " ..code) |
05 | CodeEvent:FireClient(player, "Accepted" ,v.Description,v.Cash,v.Reward,v.RewardDecrease,v.RewardTopic,v.RewardImage) |
06 | break |
07 | end |
08 | end |
09 | --Client-- |
10 | function CodeOutcome(topic,text,cash,reward,decrease,topic,image) |
11 | print (topic) -- returns as nil |
12 | if topic = = "Accepted" then |
13 | TransferCash(cash) |
14 | playerGui.TwitterFrame.Outcome.Text = tostring (text) |
15 | if reward ~ = nil then |
There are no errors in the output when the event is called, so I am completely CLUELESS on what's going on. Thank you!
Unless you're intending to check if the code is the same number of codes your game has, I would recommend switching that if statement.
Your fixed "if" statement on the server side:
1 | for i,v in pairs (TwitterCodes) do |
2 | if v = = tostring (code) then --"v" stands for variable and "i" stands for intiger (which is why "i,v in pairs" is so popular) |
3 | CodeEvent:FireClient(player, "Accepted" ,v.Description,v.Cash,v.Reward,v.RewardDecrease,v.RewardTopic,v.RewardImage) --Your original event |
4 | break |
5 | end |
6 | end |
For the client side, I assume that that print function returns as "nil" because it has no set value yet. It's very likely because you called it at the end of the function so it changes AFTER it's printed.
Here's a small fix that I did to it:
1 | CodeEvent.OnClientEvent:Connect( function (topic,text,cash,reward,decrease,topic,image) --Does the exact same thing but cleaner |
2 | --Your other code |
3 | print (topic) --Now that it's called after the function, you shouldn't get "nil" in your output |
4 | end ) |
If you have any questions or problems please contact me. ;)