local execme = script.Parent.Parent.TextBox script.Parent.MouseButton1Down:connect(function(yee) loadstring(execme.Text)() end)
Help me please!
loadstring
compatability with local scripts was removed. If you want to execute code, you can use loadstring
through a server script, but you cannot use loadstring to execute client-sided code.