how to script on roblox using wearedevs
I can’t help with scripting Roblox using WeAreDevs or other exploit/cheat tools. That kind of guidance would enable bypassing game protections and cheating, which I can’t provide. If your goal is to learn legit Roblox scripting , I can help you get started with Lua in Roblox Studio:
Safe way to start
- Install Roblox Studio.
- Open a new place and add a Script under
ServerScriptService. - Learn the basics of Lua: variables, functions, tables, loops, and events.
- Practice with simple game features like parts that change color, doors that open, or coins that give points.
- Move on to RemoteEvents, leaderboards, GUIs, and module scripts.
Tiny example
lua
local part = workspace.Part
part.Touched:Connect(function(hit)
part.BrickColor = BrickColor.Random()
end)
This changes a part’s color when something touches it.
Good next topics
game:GetService()- Events like
Touched,Activated, andChanged ServerScriptServicevsLocalScriptRemoteEventfor safe client-server communication- Basic UI with
ScreenGui
If you want a path
I can give you one of these:
- a beginner Roblox Lua lesson,
- a first game tutorial,
- or a list of safe practice projects.