Let's say, somebody enters a script and the script's name is changed, how do I get the script's original name?
Let's just say the script changes when a part is touched so do this to keep track of the name
1 | local scriptName = "script name here" |
2 | script.Parent.Touched:Connect( function () |
3 | script.Name = "heyy" |
4 | end ) |