Know-Legal Web Search

Search results

  1. Results From The WOW.Com Content Network
  2. How to have multiple roblox game instances open at the same time

    www.reddit.com/.../comments/nrgbh1/how_to_have_multiple_roblox_game_instances_open

    If you have Windows 10, you can use the Roblox app from the Microsoft store at the same time as the website downloaded Roblox. If I leave the app version alone for too long it'll stop working right though. Don't tell me to download viruses. Please.

  3. Multi Roblox is not working, what{s going on? : r/RobloxHelp -...

    www.reddit.com/r/RobloxHelp/comments/xtupps/multi_roblox_is_not_working_whats...

    Roblox Account Manager does require you to enter the account credentials of your alts so id recommend just using it with throwaways if you don't trust it. It lets you keep all your alts on a list and lets them all join at once with 1 click of a button instead of having to switch and join between them.

  4. How do you detect multiple instances with the new Raycasting ......

    devforum.roblox.com/t/how-do-you-detect-multiple-instances-with-the-new-ray...

    CODE I USED FOR SOME CONTEXT while firebreathParticle:IsDescendantOf(workspace) do wait() local params = RaycastParams.new() params.FilterDescendantsInstances = {character} params.FilterType = Enum.RaycastFilterType.Blacklist local hit = workspace:Raycast(character.HumanoidRootPart.Position, character.HumanoidRootPart.CFrame.LookVector * 10) if hit and hit.Instance.Parent:FindFirstChild ...

  5. How to reduce/prevent lag when adding multiple instances at ... -...

    devforum.roblox.com/t/how-to-reduceprevent-lag-when-adding-multiple-instances...

    I’ve also heard that when dealing with large amounts of instances, cloning is better than instancing, so you can also do that:--outside the loop: local sample = Instance.new("StringValue") --inside the loop: local UnitInstance = sample:Clone()

  6. Give multiple instances the same function? - Scripting Support...

    devforum.roblox.com/t/give-multiple-instances-the-same-function/3104063

    You can connect every textbutton in a table with the same event like this: for _, button in pairs (textbuttons) do. button.MouseButton1Click:connect (function () print (‘clicked!’) end) end. But I want to add a script to every child in a table. All children are instances like models or parts and I want this function or script to run whever ...

  7. How to reparent multiple instances into multiple instances -...

    devforum.roblox.com/t/how-to-reparent-multiple-instances-into-multiple...

    Hello, this is the first problem I’ve had so much trouble solving that I’ve needed to ask on the DevForum. Basically, I know how to use for loops to clone all of an Instance’s children, and how to reparent them to one location. However, I am wanting to use a for loop to clone all an Instance’s children, then basically Ctrl+Shift+V them into multiple Instances. I have searched ...

  8. Is their a way to tween multiple things in 1 Tween ... - Roblox

    devforum.roblox.com/t/is-their-a-way-to-tween-multiple-things-in-1-tween/1426144

    Kon’nichiwa! local TweenService = game:GetService("TweenService") local Time = 1 local TweenInfo = TweenInfo.new(Time, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut, 0, false, 0) --You can build the tweens anywhere earlier in the script. local Tween1 = TweenService:Create(nv, TweenInfo, {Value = 2}) local Tween2 = TweenService:Create(nv, TweenInfo, {Value = 3}) --Then you can call them ...

  9. Multiple Terrain Instances - Engine Features - Developer Forum -...

    devforum.roblox.com/t/multiple-terrain-instances/454543

    Right now in Roblox you can’t have multiple terrain instances. There is just a default one in workspace that can’t be removed. It would make the Roblox Engine better if you can have multiple terrain instances. One use for multiple terrain instances would be for better shorelines. Terrain will often morph weirdly when water touches it as well as other types of terrain. Shorelines look ...

  10. Multiple Roblox instances : r/robloxhackers - Reddit

    www.reddit.com/r/robloxhackers/comments/1ddbavl/multiple_roblox_instances

    Roblox account manager it’s a pretty straight forward app watch a YouTube video on it if your struggling. Either use bloxstrap or an android emulator that uses multi-instance. Personally, I use mumu. For PC though, I can't advise you on an executor that would support multi execution.

  11. 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 ...