Hi! So, lets say I have a tool and when the tool touches an object, it will say ‘Cooking…’ and then 3 seconds later it will say the tool name ‘Cooked Burger’
The naming part of the script I put was:
local CurrentName = “Burger w/ Meat”
wait(1)
local NewName = “Cooking…”
wait (3)
local NewName = “Cooked Burger”
Why wouldn’t this work? It just goes to ‘Cooked Burger’ and doesn’t change it to Cooking… for 3 seconds, this is probably a simple fix, would be appreciated if somebody could help, thanks.