All Translators

Browse and discover creative translators from our community.

Normal Language
"Print the current date and time to the console."
Roblox Lua
"local currentDate = os.date('%Y-%m-%d %H:%M:%S') print(currentDate)"
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
"Give me a diamond sword to my friend Alex."
Minecraft Bedrock Commands
"/give @p[name=Alex] minecraft:diamond_sword 1"
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
"red block"
Robot 64 Roblox Part Names
"Part_RedBlock"
Normal Language
"Hello, user!"
javascript like text
"helloUser"
Normal Language
"Set the starting health to 150."
roblox bedwars custom match script generator
"local startingHealth = 150"