Is Health Potion supposed to be a folder? The issue now is that it’s 2 folders with 1 value in the NumberValue?
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.
Try changing the for Loops to look like this:
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?
When you refresh does it kill the player?
I will have to leave soon by the way.
It adds another health potion each time I press this refresh button:
Show me where the refresh button functionality is at. I need to know what happens when you press refresh
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)
Show me the server-side script
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)
I think maybe removing the first loadCharcter may work
It probably would. If you dont need that then remove it
If you dont need the loadcharacter function here then that will fix the issue
Items now work properly.
Let me test them really quickly.
Health Potions now have 0 issues which is really good! They delete when used.
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?
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.