I don’t know if you compared Rojo as if it was a code editor, but it isn’t.
This was asked a while ago on #studio-features, and I remember the conclusion being no. I heard Roblox Staff uses Rojo to use VSCode and such to implement new features, so that would be cool to see, but it kind of doesn’t make sense to have that there…
I meant support for Rojo or just support for other code editors using another program like Rojo (built-in).
What I see happening now is the code editor getting upgrades (which is not a bad thing). However, when using other code editors that already have these features, I can’t see why Roblox doesn’t want to natively support them. The only reason I see is to lock us developers to only using Roblox studio.
As you said, it’s probably not going to happen Just like Linux support
very evident that this issue is the result of a change of this script editor update.
i’d like to see this addressed, this is (what i’d call) a big issue and is quite problematic for any plugin that wants to edit the source quickly - which of course exists. is this intended functionality? i’d hope not
I’m not sure if you ever got an answer to this, but the issue is it UI.Counter_Txt isn’t a member (like a property) of the ScreenGui. It is bad practice to index for children like this anyway – use Instance:FindFirstChild instead.
local Counter_Txt = UI:FindFirstChild("Counter_Txt") :: TextLabel
For the duration of the beta(s), you will need to put either --!strict or --!nonstrict at the top of your script, or opt into the Scripts are Non-strict by default beta, in addition to the Luau-Powered _ betas for the contained features to work as expected, with --!strict typically giving the best results.
This step will not be necessary in the full release.
Because these features are powered by the Luau type system, the Luau type system must be enabled for the scripts in question, or the editor will have no data to work with.
Thanks for sharing! I wonder have you ever using team create collaborative mode? Because monitoring script source change event and replace source by plugin may not work as you expect with that feature on.
Also by the way, we are removing delay text sync from beta feature😄