Alright, I am making an audio system, and I wanna make sure it works with printing, but instead, it prints "nil" Okay, so here's my client part of the script:
01 | local SoundService = game:GetService( "SoundService" ) |
02 | local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) |
03 | local revent = ReplicatedStorage.SoundEvent |
04 | local frame = script.Parent |
05 | local song 1 = frame.song 1 |
06 | local cooldown = 7 |
07 | local debounce = false |
08 | local song 1 id = 2518263386 --This is what I want the normal script to print just to test. |
09 | local player = game.Players.LocalPlayer |
10 |
11 |
12 | song 1. MouseButton 1 Click:Connect( function (player,song 1 id) |
13 | if not debounce then |
14 | debounce = true |
15 | revent:FireServer(player,song 1 id) --I fire the songid too. |
16 | wait(cooldown) |
17 | debounce = false |
18 | end |
19 | end ) |
That's the localscript, and this below is the actual script:
01 | local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) |
02 | local revent = ReplicatedStorage.SoundEvent |
03 | local soundbox = script.Parent.Sound |
04 | local audio = script.Parent.Sound.SoundId |
05 |
06 |
07 | local function test(player,song 1 id) |
08 | audio = song 1 id |
09 | print (song 1 id) |
10 | end |
11 |
12 |
13 |
14 |
15 | revent.OnServerEvent:Connect(test) |
When I click the gui button, instead I just get "nil", can somebody tell me why?
The problem is, GUIObject.MouseButton1Click
doesn't call the connecting function with anything.. however, in your (LocalScript) code on line 12, the function that handles the MouseButton1Click
has 2 arguments, therefore, both arguments will be nil
once the event fires.
also, whenever a LocalScript does RemoteEvent:FireServer
, the OnServerEvent
handling functions will be called with the player that called FireServer
and then all other arguments that you pass to it.. therefore, you don't need to pass player
to FireServer
, roblox automatically does it for you
EDIT:
LocalScript
01 | local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) |
02 | local revent = ReplicatedStorage.SoundEvent |
03 | local frame = script.Parent |
04 | local song 1 = frame.song 1 |
05 | local cooldown = 7 |
06 | local debounce = false |
07 | local song 1 id = 2518263386 --This is what I want the normal script to print just to test. |
08 | local player = game.Players.LocalPlayer |
09 |
10 |
11 | song 1. MouseButton 1 Click:Connect( function () |
12 | if not debounce then |
13 | debounce = true |
14 | revent:FireServer(song 1 id) --I fire the songid too. |
15 | wait(cooldown) |
16 | debounce = false |
17 | end |
18 | end ) |
Server Side
01 | local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) |
02 | local revent = ReplicatedStorage.SoundEvent |
03 | local soundbox = script.Parent.Sound |
04 | local audio = script.Parent.Sound.SoundId |
05 |
06 |
07 |
08 | function test(player,song 1 id) |
09 | audio = song 1 id |
10 | print (song 1 id) |
11 | end |
12 |
13 | revent.OnServerEvent:Connect(test) |