You can write your topic however you want, but you need to answer these questions:
What do you want to achieve? Keep it simple and clear!
I want to have my tools working when I put them in replicated storage.
What is the issue? Include screenshots / videos if possible!
I have a script where I get my tool from replicated storage. (I will include that at the end of this), but when I get it, it does not work. It does work when it is in the starter pack though. Its like it gives it to them but the scripts inside the tools do not run.
Okay. Just remember that you cannot use LocalPlayer on the server script. Call the PlayerAdded event instead to get the player.
So your code would be:
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local MarketplaceService = game:GetService("MarketplaceService")
local Players = game:GetService("Players")
Players.PlayerAdded:Connect(function(player)
local ownsGamepass = MarketplaceService:UserOwnsGamePassAsync(player.UserId,20791449)
if ownsGamepass then
local Medkit = ReplicatedStorage:WaitForChild("Medkit"):Clone()
Medkit.Parent = player.Backpack
end
end)
Okay I found a problem. Your Server Script is located in StarterGui, which shouldnt be the case. Put your server script inside ServerScriptService.
And use this code for your script (code is edited):
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local MarketplaceService = game:GetService("MarketplaceService")
local Players = game:GetService("Players")
Players.PlayerAdded:Connect(function(player)
local ownsGamepass = MarketplaceService:UserOwnsGamePassAsync(player.UserId,20791449)
if ownsGamepass then
local Medkit = ReplicatedStorage:WaitForChild("Medkit"):Clone()
Medkit.Parent = player.Backpack
end
end)