My Item doesn't delete after I used it

Is Health Potion supposed to be a folder? The issue now is that it’s 2 folders with 1 value in the NumberValue?

1 Like

So how it works is that there are physical items and number value items. The number value holds how many of the item exist. and the folder is well the physical thing.

1 Like

Try changing the for Loops to look like this:

2 Likes

Ok. It works. Problem is that when I refresh my character another 2 get added on. How would I be able to like check if 1 health potion exists already?

1 Like

When you refresh does it kill the player?

1 Like

I will have to leave soon by the way.

1 Like

It adds another health potion each time I press this refresh button:
image

1 Like

Show me where the refresh button functionality is at. I need to know what happens when you press refresh

1 Like
local Player = game:GetService("Players").LocalPlayer
local Character = Player.Character or Player.CharacterAdded:Wait()

script.Target.Value = Character

script.Parent.MouseButton1Click:Connect(function()
	game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("RespawnRE"):FireServer()
end)
1 Like

Show me the server-side script

1 Like
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Events = ReplicatedStorage:WaitForChild("Remotes")

local StarterGui = game:GetService("StarterGui")
local camera = workspace.CurrentCamera

game.Players.PlayerAdded:Connect(function(plr)
	plr:LoadCharacter()
	plr.PlayerGui.StageTransfer.Enabled = true
end)

Events.RespawnRE.OnServerEvent:Connect(function(plrFired)
	plrFired:LoadCharacter()
	plrFired.PlayerGui.StageTransfer.Enabled = true
end)
1 Like

I think maybe removing the first loadCharcter may work

1 Like

It probably would. If you dont need that then remove it

1 Like

If you dont need the loadcharacter function here then that will fix the issue

2 Likes

Items now work properly.

image

Let me test them really quickly.

1 Like

Health Potions now have 0 issues which is really good! They delete when used.

2 Likes

It works like a charm but theres a slight issue I’ve been noticing. My game is multiplayer and the arena’s may be visible for other players and can lead to other players interacting with the battle. How would I make the arena and everything on the client and that?

1 Like

That’s a whole other issue that may take some time to port over. This thread is getting quite long so could you mark this one as solved and create a new one for that issue? If you link the new thread here, I’ll check it out.

Sure Ill create a new post about this issue.

1 Like
1 Like