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
local scriptName = "script name here" script.Parent.Touched:Connect(function() script.Name = "heyy" end)