This is a normal script and this game is Filtering Enabled and giving items wont work. Can someone help?
1 | tool = game.ReplicatedStorage.Tools.Banana |
2 | local player = game.Players.LocalPlayer |
3 |
4 | game.ReplicatedStorage.NetworkFolder.LOL.OnClientEvent:connect( function () |
5 | tool:Clone().Parent = player.Backpack |
6 | end ) |
1 | --Another local script |
2 | script.Parent.ClickDetector.MouseClick:connect( function (plr) |
3 | game.ReplicatedStorage.NetworkFolder.LOL:FireClient() |
4 | end ) |
When a player tries to invoke this RemoteEvent, the player is automagically passed by. So:
1 | local tool = game.ReplicatedStorage.Tools.Banana |
2 |
3 | game.ReplicatedStorage.NetworkFolder.LOL.OnServerEvent:connect( function (player) |
4 | tool:Clone().Parent = player.Backpack |
5 | end ) |
Inside a localscript all you gotta do is:
1 | game.ReplicatedStorage.NetworkFolder.LOL:FireServer() |