I’m not sure what you mean and I don’t think anybody else does either…
What sensitive information are you talking about? The whole topic is about being able to take in-game photos, what’s sensitive about that?
I’m not sure what you mean and I don’t think anybody else does either…
What sensitive information are you talking about? The whole topic is about being able to take in-game photos, what’s sensitive about that?
its definetly not illegal to take pictures in game as roblox itself added a screenshot system in game right so what problem would adding my own be?
and the thing is some people said having other players is illegal what about youtubers as they have players in their vids which concerns some people privacy right?
i really need to talk to someone veteran and its expert on roblox tos system
i agree as taking in-game photos isnt a problem
So long as you arent saving personal info e.g email adress, IP adress, Real name, phone number, bank stuff, or real world location then you will be fine.
All information available in the roblox workspace can be accessed by anyone so there should be no issues with you saving it.
The information I mentioned before isnt accessible through basic means, you have to go through websites and pull info to get it which means that doing that would have to be deliberate and a clear break of t&cs.
Hope this helps
so you mean im allowed to take pics using my in-game phone and put in datastore?
if yes can you suggest a way of doing it you might say i could use viewports but its quite laggy and HOW AM I GONNA SAVE A VIEWPORT TO DATASTORE??!!??
You arent going to save a vieport exactly, you would turn parts into text, if you look in the replys section here you can see what i turned a plane model into
the thing right now is how am i gonna have many viewports in game when one itself is lagging up the game like hell?
im not gonna add limit to player taking pics
Limit what the view port loads in to only be a set area in front of the camera, this way it reduces the number of parts
The other option would be to put a frame on the screen to make it look like a camera and then capture it straight from thw worspace
but still what if i had like 100 pics that would just destroy pcs i dont wanna make a “destroy your pc simulator”
Only save what you need to,
Viewports only render when the contents of it change so there will only be one lag spike.
If the images arent moving it would be fine, so long as you load them in one at a time properly rather than all at once with no wait times
thx i might try it also can i have an example of how i would save the parts?
Sure, heres part of a plane model that i saved
This is turning parts into text and back again
The script to turn it into text is 3.5k lines of code
The script to turn it back is also 3.5k lines of code
Notes / Performance
Here are some important considerations for creating viewport frames:
- Each viewport frame will create a texture for rendering. The texture has a max size limit, so if the frame is too big, the contents may look blurry.
- The viewport will only update when its children (camera or objects within) are changed.
- Moving a viewport’s physical children is less performant than keeping them static. If you need to update the view, it’s better to move the camera than move the parts/models.
- A viewport frame is not designed for rendering a large number of complex objects — it may be slow if you put too many objects inside.
- Objects inside viewports will be rendered using a fixed lighting setting, although more options may become available in the future. No shadows or post effects are currently available.
ye i know i read that post i just wanna know HOW i would convert parts to text or is there any function/module?
Either find someones script that does it or make your own.
Making your own would take a very long time even if you do it the quick way like i did. Also @Abcreator just put up a link on how it works
as you said before to only load up parts that can be seen by the camera to reduce lag while loading up a pic how would i know when taking a pic if the part is in the camera?
You could create a part in front of the camera and get all the parts within it, or use region3. Then those parts would be what you use
oh cool nice idea ill try it soon thx for help anyways ill wait for more ideas!