Why are my tools not working in replicated storage?

That’s where its having most of the problems in the real game. I put it in the real game and it almost never works, but in studio it works most of the time but not always,

2 Likes

Oh. Well I am not sure why.

Try using this code, see if this will do any better:

local ReplicatedStorage = game:GetService("ReplicatedStorage")
local MarketplaceService = game:GetService("MarketplaceService")
local Players = game:GetService("Players")

local Medkit = ReplicatedStorage:WaitForChild("Medkit") -- mentioned 'Medkit' here

Players.PlayerAdded:Connect(function(player)
   local ownsGamepass = MarketplaceService:UserOwnsGamePassAsync(player.UserId, 20791449)
   if ownsGamepass then
      local CloneMedkit = Medkit:Clone()
      Medkit.Parent = player:WaitForChild("Backpack")
   end
end)
1 Like

Would that be a server script in serverscriptservices?

Yes this should be in the server script in ServerScriptService

Idk, works sometimes in studio but not in game. So weird.

Wait, you mean it doesnt work in-game anymore?

Yeah. It works in studio when I have my output open but when I am in game it does not work.

Very strange. I am not sure how to fix this. You can make a different topic about it.

Alright, well thanks for all your help!!!

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.