I have made a textbutton GUI to give a player a tool into their backpack. The tool is given but does not work, I placed it in the starter pack and it functions works well. There are no errors or mistakes in the script. It just does not work
I think it has something to do with filtering enabled...
Script:
01 | local used = false |
02 | local desuboru = game.ReplicatedStorage.Attacks.Desuboru |
03 |
04 | script.Parent.MouseButton 1 Click:Connect( function () |
05 | if used = = false then |
06 | local clone = desuboru:Clone() |
07 | clone.Parent = game.Players.LocalPlayer.Backpack |
08 | used = true |
09 | else |
10 | script.Parent.Text = "Equipped" |
11 | wait( 1 ) |
12 | script.Parent.Text = "Equip" |
13 | end |
14 | end ) |
Please help!
I assume your script is a local script
, it's a typical remote event
question.
1.Add a remote event in ReplicatedStorage
called BackpackEquip
.
2.Add a server script inside ServerScriptService
called Event_Listener
Basically what you should do is that you need to connect the server to the client signal.
01 | --server script-- |
02 | game.ReplicatedStorage.BackpackEquip.OnServerEvent:Connect( |
03 | function (plr,toolName) |
04 | if not plr.Character then --If there's no character |
05 | return nil --stop the function |
06 | end |
07 |
08 | if toolName then |
09 | --Equip |
10 | if plr.Backpack:FindFirstChild(toolName) then |
11 | plr.Backpack:FindFirstChild(toolName).Parent = plr.Character |
12 | else |
13 | --unknown tool |
14 | warn( "Player has no tool called " .. toolName) |
15 | end |
Then your local script:
01 | --local script-- |
02 | local used = false |
03 | local desuboru = game.ReplicatedStorage.Attacks.Desuboru |
04 |
05 | script.Parent.MouseButton 1 Click:Connect( function () |
06 | if used = = false then |
07 | game.ReplicatedStorage.BackpackEquip:FireServer(desuboru.Name) --or just "Desuboru" lol haha |
08 | used = true |
09 | else |
10 | script.Parent.Text = "Equipped" |
11 | wait( 1 ) |
12 | script.Parent.Text = "Equip" |
13 | end |
14 | end ) |
Ohh there some works to change!
P.S. if you want to dequip the tool then just do:
1 | game.ReplicatedStorage.BackpackEquip:FireServer( nil ) |
Hey so. In order for a tool to clone to the server, you will have to fire a RemoteEvent. Your code should resemble something like this:
01 | --LOCAL SCRIPT |
02 |
03 | local used = false |
04 | local desuboru = game.ReplicatedStorage.Attacks.Desuboru |
05 | local remoteEvent = Instance.new( "RemoteEvent" ) |
06 | remoteEvent.Name = "ToolGiver" |
07 | remoteEvent.Parent = game.ReplicatedStorage |
08 |
09 | script.Parent.MouseButton 1 Click:Connect( function () |
10 | if used = = false then |
11 | remoteEvent:FireServer( "Equipped" ) |
12 | used = true |
13 | script.Parent.Text = "Equipped" |
14 | else |
15 |
:
01 | -- SERVER SCRIPT IN SERVERSCRIPTSERVICE |
02 |
03 | game.ReplicatedStorage [ "ToolGiver" ] .OnServerEvent:Connect( function (plr, value) |
04 | if value = = "Equipped" then |
05 | clone = game.ReplicatedStorage.Attacks.Desuboru:Clone() |
06 | clone.Parent = plr.Backpack |
07 | else |
08 | plr.Backpack.Desuboru:Destroy() |
09 | end |
10 | end ) |
Hope this helped. Trust me I know how annoying FE can be some times. xD