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

Tool not working when given from an equip gui but works when in starter pack?

Asked by 4 years ago

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:

01local used = false
02local desuboru = game.ReplicatedStorage.Attacks.Desuboru
03 
04script.Parent.MouseButton1Click: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
14end)

Please help!

2 answers

Log in to vote
2
Answered by 4 years ago
Edited 4 years ago

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--
02game.ReplicatedStorage.BackpackEquip.OnServerEvent:Connect(
03function(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
View all 23 lines...

Then your local script:

01--local script--
02local used = false
03local desuboru = game.ReplicatedStorage.Attacks.Desuboru
04 
05script.Parent.MouseButton1Click: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
14end)

Ohh there some works to change!

P.S. if you want to dequip the tool then just do:

1game.ReplicatedStorage.BackpackEquip:FireServer(nil)
0
I tried on the server but didn't clone on server , thanks a lot! NathanBlox_Studios 212 — 4y
Ad
Log in to vote
2
Answered by
orcazate 170
4 years ago

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 
03local used = false
04local desuboru = game.ReplicatedStorage.Attacks.Desuboru
05local remoteEvent = Instance.new("RemoteEvent")
06remoteEvent.Name = "ToolGiver"
07remoteEvent.Parent = game.ReplicatedStorage
08 
09    script.Parent.MouseButton1Click:Connect(function()
10        if used == false then
11           remoteEvent:FireServer("Equipped")
12            used = true
13        script.Parent.Text = "Equipped"
14        else
15 
View all 21 lines...

:

01-- SERVER SCRIPT IN SERVERSCRIPTSERVICE
02 
03game.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
10end)

Hope this helped. Trust me I know how annoying FE can be some times. xD

0
Your version is clear and helpful! However a more flexible method is via tool name or custom identifiers. LinavolicaDev 570 — 4y
0
Yeah I know thanks for the feedback though. Very helpful. Have a nice day :D orcazate 170 — 4y
0
:D THANKS! LinavolicaDev 570 — 4y
0
Kinda back tracked myself on this I created the RemoteEvent via the client. You should do it on the server script orcazate 170 — 4y

Answer this question