#Starter tool keeps showing

12 messages · Page 1 of 1 (latest)

green tree
#

Like it spawns back without starting the game or spawns when you start it?

patent bearBOT
#

studio** You are now Level 2! **studio

mental edge
#

In like the actual game on roblox

green tree
#
  1. 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.
mental edge
green tree
patent bearBOT
#

studio** You are now Level 3! **studio

mental edge
#

Even after it is deleted

green tree
#

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.