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.
2 | local ServerRequest = game:GetService( "ReplicatedStorage" ):WaitForChild( "NetworkFolder" ):WaitForChild( "ServerRequest" ) |
4 | for i,v in pairs (script.Parent.ClickDetector) do |
5 | v.MouseClick:connect( function () |
6 | ServerRequest:FireServer( 'tool2' ) |
2 | elseif request = = 'tool2' then |
3 | Tools:FindFirstChild( "BananaDount" ):Clone().Parent = player.Backpack |
02 | local NetworkFolder = game:GetService( "ReplicatedStorage" ):WaitForChild( "NetworkFolder" ) |
03 | local Tools = game:GetService( "ReplicatedStorage" ):WaitForChild( "Tools" ) |
05 | NetworkFolder: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() |
16 | elseif request = = 'handto' then |
17 | if game.Players:FindFirstChild(data [ 1 ] ) and game.Workspace:FindFirstChild(player.Name):FindFirstChild(data [ 2 ] ) then |
18 | local player 2 = game.Players:FindFirstChild(data [ 1 ] ) |
19 | local tool = game.Workspace:FindFirstChild(player.Name):FindFirstChild(data [ 2 ] ) |
20 | tool:Clone().Parent = player 2. Backpack |