Any news about viewportframes? like render 2 cameras at the same time
I noticed the HapticService
got deprecated in docs and UI buttons got new haptic properties. When can we expect this new HapticEffect
instance?
Fixes an issue that sometimes caused sounds shorter than one frame not to play.
Oh shit you mean this wasn’t my own fault? I have animations triggering short sounds such as beak/teeth clacking and occasionally random sounds would not play though they did other times.
Please tell me you guys are planning on removing the stupid attachment parent limit. They’ve been virtually unusable ever since they came out because of it.
+1 what’s the reason for restricting attachment parent type? It’s way more valuable to us if they would simply exist based around origin if they’re in a non-PVInstance parent. The only workaround we have is to shovel hundreds of these things into Terrain, or use container parts.
can you tell me what does this mean ?
not sure how i feel about this; while it is technically accurate i don’t think implicit coercions should be encouraged, they cause way more trouble than they’re worth
In many cases, we were previously enforcing that concat operands be only strings, and have updated the type solver to accept numbers in those cases as well.
I can’t immediately think of -how- but I just get a slight feeling that this is gonna cause some sort of problem somewhere.
I suspect this means we will be able to manipulate the camera using welds and constraints.
Just a guess though.
Or perhaps making it easier to attach things to the camera (such as hats??)
Really want the ability to round only specific corners in a GUI. Hope to see this soon!
Not quite. Aurora is the upcoming server authoritative API that Roblox has teased at recent RDCs and on the creator roadmap.
From what’s been either disclosed publicly, been found through API dumps, or disclosed in release notes, here’s what we think we know about it:
-
It is slated to release sometime after summer 2025.
-
It introduces two new services,
AuroraService
andAuroraScriptService
, as well as a new script typeAuroraScript
. -
It contains all features necessary to:
- Run code on the server and client simultaneously.
- Rollback and re-simulate the entire Roblox datamodel, Luau VM, and physics engine as one unit, likely in the event of mispredictions.
- Predict ahead for remotely owned physics assemblies.
The obvious intent behind all of this is to finally, finally, finally eliminate all client-side exploits, particularly physics and character exploits, that have plagued the platform for years, and to do it in a developer-friendly way.
To any concerned parties, I repeat once again that all information in this post has been disclosed publicly in one way or another.
This was always valid Luau behaviour, inherited from Lua 5.1, and never caused any errors at runtime. They’re just fixing a false-positive warning you would get for writing perfectly valid code.
--!strict
local apples = 5
-- Previously, you would've gotten a warning here,
print("I have " .. apples .. " apples")
-- It did not error when ran,
-- but you would need to use `tostring` to get rid of it
print("I have " .. tostring(apples) .. " apples")
-- Side note: In this case, you can write cleaner code w/o concatenation at all
-- Only for `print`, which will add spaces between each argument you pass
print("I have", apples, "apples")
-- "String interpolation"
-- Can be used for any string
-- Note the ` instead of a "
-- (backtick vs quotation mark)
print(`I have { apples } apples`)
There’s an issue with box selecting in the new beta explorer.
I can’t box select outside of instances, but I could in the old explorer. Not sure if they intentionally removed it, and also don’t know if it affects anything, so just saying here.
There’s a bug currently with box selecting from the area after the last Instance. If you select from the empty space beside the Instances it will work.
I don’t mind this change in principle — but there was no early warning. This broke quite a few of my plugins, which scan for and manipulate all PVInstances in workspace.
For reference we did do some early testing of it in-experience without it breaking anything there.
I’m curious what specific pattern broke.
I figured this would be a relatively safe change from the plugin perspective because a lot of codepaths involving PVInstance subclasses have to be coded defensively anyways to avoid breaking from stuff like new BasePart types.
Did stuff break break, or just the camera getting moved too when it shouldn’t have been?
Stuff broke in the sense that we call PivotTo on all PVInstances, causing the Camera to be moved.
There was also a case (my personal favorite) where one of our models (an elevator), which happened to have a ThumbnailCamera, would now treat it as a valid floor.
(PS: We’ve already fixed this through excluding the camera from PVInstance checks)
Ideally you wouldn’t have to exclude the Camera.
Do you just mean you did that as the quick fix to get things working again or do you have some cases that would end up needing the inelegant exclude even if refactored to align with the change?