Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

my Script Executon Gui doesn't exec scripts, also says "Loadstring not available" when I enabled it?

Asked by 6 years ago
local execme = script.Parent.Parent.TextBox

script.Parent.MouseButton1Down:connect(function(yee)
    loadstring(execme.Text)()
end)

Help me please!

1 answer

Log in to vote
0
Answered by
mattscy 3725 Moderation Voter Community Moderator
6 years ago

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.

Ad

Answer this question