Know-Legal Web Search

Search results

  1. Results From The WOW.Com Content Network
  2. Q: Is Multi-instances (multi-robloxs) is allowed? - DevForum |...

    devforum.roblox.com/t/q-is-multi-instances-multi-robloxs-is-allowed/3069535

    I think Roblox is fine with it. I remember a bootstrapper called BloxStrap that has this multi-instance feature, and it didn’t receive any complaints from Roblox (the dev removed the feature anyways for separate reasons). As long as you’re not using it for malicious purposes, it should be fine.

  3. Being able to change multiple properties in Instance.new ... -...

    devforum.roblox.com/t/being-able-to-change-multiple-properties-in-instancenew...

    As a Roblox developer, it is currently too hard to change properties of instances without flooding the code, and it’s impossible to modify properties of newly created instance without assigning a variable to it first. If Roblox is able to address this issue, it would improve my development experience because I and other Roblox developers would be able to create new instances with set ...

  4. Where is a way to use two clients at the same time ... - Roblox

    devforum.roblox.com/t/where-is-a-way-to-use-two-clients-at-the-same-time/2392787

    I meant two instances of the roblox client on the same machine. p49p0 (Panthera) May 25, 2023, 12:30pm #4. about that roblox studio has a option to play with multiple accounts, the max is 4 or 5 i think. but if you want to launch multiple roblox player apps, i dont recommend doing it since you will using an exploit which violates the roblox tos.

  5. Possible to save data across multiple games? - Roblox

    devforum.roblox.com/t/possible-to-save-data-across-multiple-games/274913

    Make a group leaderboard and just put them into diffrent games, the roles for each player would stay the same in each group. If you need a group leaderboard script: game.Players.PlayerAdded:connect(function(Plr) local Stats = Instance.new("BoolValue", Plr) Stats.Name = "leaderstats". local Rank = Instance.new("StringValue", Stats) Rank.Name ...

  6. How do multiple places in a game work, and how do I make ... -...

    devforum.roblox.com/t/how-do-multiple-places-in-a-game-work-and-how-do-i-make...

    Hello! I am currently working on a game that requires different ‘maps’ to play on. I am using Terrain, and as I’ve discovered on here, you cannot have multiple Terrain instances swapped in/out. As such, I have to use different places. There is a lot of jargon in ServerStorage and ServerScriptService that is going to be used regardless of which map is loaded. I do not know anything about ...

  7. How to add multiple places inside a place? - Roblox

    devforum.roblox.com/t/how-to-add-multiple-places-inside-a-place/469965

    In Studio, you can do it like this: Go to the View tab on the top bar and click Game Explorer: In the Game Explorer menu, right click Places. Click Add New Place in the menu, after you’ve right clicked Places. Your new place will be created, you can rename it to your preference, and edit it in the Develop page on the website.

  8. Multiplace Games - Shared Code Base - Scripting Support - Roblox

    devforum.roblox.com/t/multiplace-games-shared-code-base/175829

    Shared Code Base For Multiplace Games Engine Features. As a Roblox developer, it is currently too hard to share code between places in multiplace games. I would like to be able build a multiplace game in which each place is just a different map/level of the same game. For example, the starter place could be the starter map, then place 1 could ...

  9. Splitted Screen aka Multiple Cameras - Engine Features - Roblox

    devforum.roblox.com/t/splitted-screen-aka-multiple-cameras/53944

    This, on the other hand, is more complicated. Other games have similar features: Bethesda games, for instance, uses portals to connect two interior logical rooms which show the other side even though it’s not truly loaded, so that’s kind of like what’s being requested. These generally come with constraints though, and are specific to the ...

  10. How to transfer items between projects - Community Tutorials ......

    devforum.roblox.com/t/how-to-transfer-items-between-projects/2669934

    image 1541×429 91 KB. A very simple guide on How to transfer items between projects. ezz_mady (ven) November 1, 2023, 8:41am #2. also if you close the place you copied the item from you cant paste it into the other game you have to have both games open until you paste the object. 23_talisman (23_talisman) Closed November 1, 2023, 9:25am #3.

  11. All you need to know about Metatables and Metamethods - Roblox

    devforum.roblox.com/t/all-you-need-to-know-about-metatables-and-metamethods/503259

    Roblox developers don’t have access to create an empty userdata, because it involves a lot of lua C api (info on userdata if you’re interested) stuff which is obviously not accessible in roblox. Although, Roblox instances (parts, scripts ect.) and some built-in objects (CFrames, Vector3s ect.) are all userdata, and all have a metatable ...