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

  1. Install Roblox Studio.
  2. Open a new place and add a Script under ServerScriptService.
  3. Learn the basics of Lua: variables, functions, tables, loops, and events.
  4. Practice with simple game features like parts that change color, doors that open, or coins that give points.
  5. 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, and Changed
  • ServerScriptService vs LocalScript
  • RemoteEvent for 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.