Thank you so much for this resource, it will be so useful when working on my games, good work!
That’s not really a bug , it’s reverting back to the previous state because Roblox doesn’t actually let you write to that instance
I couldn’t find a good way to detect if your client could write to something that didn’t have ReadOnly tags in the class info. Pcalling and writing to the same value causes issues , and Pcalling and writing to a temporary cloned instance also caused issues
This is incredible! Would love it setup as a wally package
Is there anyway to have it open a separate way from a keybind? Wanting to implement into my admin commands and open on something typed in chat
I left it pretty open for individual tweaking , if you look at where I bind to contextactionservice in the explorer module (I think) you should be able to see how it can be done
I wonder how much tweaking I would need to add FireServer
and such so I can do pentesting
what do you mean exactly? What are you wanting to do
basically I would add this to my game and then I could test what would happen if I call ceartain remotes (including with invalid/unexpected data) that and also trying to call other remotes to see if I am properly following “dont trust the client”
damn i kinda wanna integrate it into adonis as custom command already, this seems pretty cool to me and has server scope available compared to dex
This is awesome!
One quick thing I have found, if your character dies it removes the UI. Then you can no longer press F2 to bring it out.
I am assuming this may have to do with ResetOnSpawn being enabled?
Otherwise, awesome thank you!
Yeah, ResetOnSpawn is enabled.
After some experimenting I found some weird (but probably intentional) stuff such as being unable to edit text in TextLabels or some properties just having TextEditable being false while they’re supposed to be true (not grayed out).
Other than that, very cool work on it.
It’s not hard to make a gui with a textinput and a custom loadstring on the client to execute code, you can even use Studio’s built-in command bar.
So far this is a cool resource, and the permissions by default don’t allow anyone but you can add yourself (game owner), a group role or maybe even private server owner if you are into that sort of thing
this is amazing. it’s gonna save me so much time … i just spent an entire weekend starting and stopping roblox while balancing vehicle speeds, weights, and turning … with this i could just press play, change numbers in real-time and do it all in one shot
Please add a way to import this using dev console.
Ah woops forgot to disable that dumb UI reset property lol
As for the text editing , if you’re talking about editing the text of string properties , it should allow you to as long as that instance is writeable and not tagged as ReadOnly by Roblox
Very awesome of you to share this with the community. IDK if i’ll use it but it looks useful.
What your best use case for it? Something odd happening in live servers and you want to see what exists or not?
I have absolutely no idea how to add my name into the permissions.
just
return player.UserId == 378685924
or
return player.Name == "Beloathed"
i am pretty sure TextLabel.Text is not a ReadOnly property.
That seemed to be an unrelated bug caused by some enumitems not having an enumtype (font)
Added a check for that, so editing Text should be possible now
note - this means editing font is not supported since that’s a fancier enum and I’ll have to add support for that another time
Let me know if there are any other issues you encounter
It’s better to do this because User IDs can’t change unlike usernames, His name was “CertifiedJerkFace123” but is now “Beloathed”