All Translators

Browse and discover creative translators from our community.

Normal Language
"Make a red square that moves"
Roblox Script
"local part = Instance.new("Part") part.Anchored = false part.Size = Vector3.new(2, 2, 2) part.Color = Color3.fromRGB(255, 0, 0) local position = Vector3.new(10, 10, 10) part.Position = position part.Parent = workspace local function movePart() position = position + Vector3.new(0, 1, 0) part.Position = position end while true do --move in a loop movePart() wait(0.1) end"
Normal Language
"Make a square that is 10 studs wide on the screen."
Roblox Code
"local square = Instance.new("Part") square.Anchored = true square.Size = Vector3.new(10, 1, 1) square.Position = Vector3.new(0, 5, 0)"
Normal Language
"I want to build a house."
Roblox Language
"local house = workspace.Part.newPart(); house.Name = "My House"; house.Size = Vector3.new(5,5,5);"