#Starter tool keeps showing
12 messages · Page 1 of 1 (latest)
** You are now Level 2! **
Spawns when i start the game
In like the actual game on roblox
- Make sure to publish the game and 2. Make sure there are no scripts that recreate the tool. 3. Check to make sure there isn't any other duplicates of the tool in the game.
I think the problem is its a starterpack item
I'm a bit confused on what the problem is. Are you saying that deleting the tool in studio doesn't perma delete it?
** You are now Level 3! **
So like my script saves data when you leave a game but for some reason everything is saved except the starter tool so the starter tool keeps appearing in a players inventory after the join
Even after it is deleted
I would check the data to see if it has been deleted and if so, delete the tool from the player inventory via the script.
So say you had this:
Data = {
["Items"] = {
[1] = Sword
}
}
local hasStarterItem = false
for i, v in pairs(Data["Items"] do
if v == "StarterToolName" then
hasStarterTool = true
end
end
if hasStarterTool == true then
starterToolLocation:Destroy()
end
It would check the data to see if the player has the item and if not it destroys it. This is purely an example of what you could do.