v1.2.1-beta
Pre-release
Pre-release
AsynchronousAI
released this
08 Jul 04:16
·
580 commits
to main
since this release
roblox-py 1.2.1
Added support:
- Bytes supported
- Lambda supported
- Try, Except (equivalent to pcall)
- raise (equivalent to error)
- Sets supported
- Format does not fully work but no longer errors, rather than using
f"{a}: A, {b}: B,"
use
format("{a}: A, {b}: B,")
- "With" supported
- Slicing supported
Compiler
- Use
[[lua]]
alongside a multiline comment to insert lua code into the python script and have the compiler insert it
print("Python Code")
"""[[lua]]
print("Lua Code")
"""
"""
Multiline comment
"""
Functions
- divmod
- bool
- slice
Coroutine related:
- Async functions
- Bug fixes
- Performance improvements
and way way more.
Plugin from 1.0.1 is still supported.
Full Changelog: v1.0.1-beta...v1.2.1beta