Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

Remote Events not giving items?

Asked by 8 years ago
Edited 8 years ago

Okay so I have an issue that when you click a item it would give you the item. This game is Filtering Enabled. Network script is a regular script and the first block of code is a local script. The problem is that the script isn't working and I don't know what to do.

1-- Local Script
2local ServerRequest = game:GetService("ReplicatedStorage"):WaitForChild("NetworkFolder"):WaitForChild("ServerRequest")
3 
4for i,v in pairs(script.Parent.ClickDetector) do
5v.MouseClick:connect(function()
6    ServerRequest:FireServer('tool2')
7end)
8end
1-- Part that isn't working
2    elseif request == 'tool2' then
3        Tools:FindFirstChild("BananaDount"):Clone().Parent = player.Backpack   
01--Entire network script (server script)
02local NetworkFolder = game:GetService("ReplicatedStorage"):WaitForChild("NetworkFolder")
03local Tools = game:GetService("ReplicatedStorage"):WaitForChild("Tools")
04 
05NetworkFolder:WaitForChild("ServerRequest").OnServerEvent:connect(function(player, request, data)
06    print(player, request, data[1])
07    if request == 'tool' then
08        Tools:FindFirstChild(data[1]):Clone().Parent = player.Backpack
09    elseif request == 'tool2' then
10        Tools:FindFirstChild("BananaDount"):Clone().Parent = player.Backpack   
11    elseif request == 'respawn' then
12        print(player.Name..' respawned '..data[1])
13        if game.Players:FindFirstChild(data[1]) then
14            game.Players[data[1]]:LoadCharacter()
15        end
View all 24 lines...

1 answer

Log in to vote
0
Answered by 8 years ago

When I used this set up the only way I could get it working was by supplying the 3rd argument "data", I simply added a 2 value table to the FireServer('tool2') It became

1ServerRequest:FireServer('tool2', {"test","test"})
Ad

Answer this question