Net Deals Web Search

Search results

  1. Results From The WOW.Com Content Network
  2. How to check if a player is mobile or pc - Scripting Support ......

    devforum.roblox.com/t/how-to-check-if-a-player-is-mobile-or-pc/1384078

    Script in ServerScriptService. Gear:Clone().Parent = player.StarterGear. Gear:Clone().Parent = player.Backpack. cc @BMWLux. An important note when making checks like this is that mobile devices CAN have a keyboard and pc devices CAN have a touch screen. There is no 100% accuracy check.

  3. How to test Mobile Support? - Game Design Support - Roblox

    devforum.roblox.com/t/how-to-test-mobile-support/807775

    The issue is I cannot test the actual controls. Roblox doesn’t differentiate clients unless you specify what Input type it is. And to determine Mobile you’d need touch support (Which does not seem to get emulated by Studio) Currently the only way I’ve been able to do this (And testing other controls like Motion control) is by Publishing ...

  4. Flying on mobile and pc - Scripting Support - Developer Forum -...

    devforum.roblox.com/t/flying-on-mobile-and-pc/2715922

    studio, scripting, help. 95kMark (pz95k) November 25, 2023, 11:56am #1. how do i make a flying script that works on both mobile and pc. weakmetatable (weakmetatable) November 25, 2023, 12:31pm #2. This tutorial on youtube should help you out. Additionally it should be compatible with mobile. And I believe it has some configuration as well. 1 Like.

  5. Desktop Player Thinks I'm On Mobile, Breaks Menu and Shift ... -...

    devforum.roblox.com/t/desktop-player-thinks-im-on-mobile-breaks-menu-and-shift...

    It seems that the Roblox Player is identifying my computer as a mobile device, which winds up breaking the menu, shift lock, and some other things. I’ve tried reinstalling Roblox Player and restarting my computer with no luck. It happens in every game. One potential cause of this is a touchscreen monitor I have plugged into my computer, but I’ve had it for months and it’s never caused ...

  6. Sprinting Service, create sprinting with minimal scripting ... -...

    devforum.roblox.com/t/sprinting-service-create-sprinting-with-minimal...

    mobile_button_title: the title of the mobile button, by default this is nil. This is a string value. If set, it’ll override the icon. phone_button_offset: the offset of the mobile button on phones. By default, this will be set to 45. This value is a float. tablet_button_offset: the offset of the mobile button on tablets. By default, this will ...

  7. Simplest Way To Make Your GUI Fit To All Devices - Roblox

    devforum.roblox.com/t/simplest-way-to-make-your-gui-fit-to-all-devices/1413727

    Anyways, let’s start. STEP 1. Create a screen gui and a frame (or textlabel, textbutton,imagelabel,…) inside it, go to the properties and set the AnchorPoint to 0.5,0.5 (after adjusting, it will be moved a little bit, you can drag it back to its original position) STEP 2. Open your plugin, we will need to use these buttons , click the blue ...

  8. Sprint for Mobile and Console - Scripting Support - Roblox

    devforum.roblox.com/t/sprint-for-mobile-and-console

    What I am trying to do is make a sprint that is compatible for Mobile and Console and PC The PC Sprint has been scripted. I would like to know how would I add on to this script for console and mobile. How I would Like the mobile to sprint is for when the player moves the move button to 100% For Xbox kind like Minecraft sprinting were just push the left joystick forward twice, as fast as you ...

  9. Why is the graphics so different on mobile? - Roblox

    devforum.roblox.com/t/why-is-the-graphics-so-different-on-mobile/2445154

    It’s more of a Rendering, Roblox currently uses OpenGL to render 3D objects on Most android phone while PC here you’re currently on DirectX (vulkan if you’re having NVIDIA or AMD) that has Shaders roblox can use to give it’s shiny looks.

  10. Introducing the Maximum Framerate setting - Roblox

    devforum.roblox.com/t/introducing-the-maximum-framerate-setting

    Hello Creators, We know that many of you use an external tool to run Roblox at their display’s native refresh rate by removing the client 60Hz frame render lock. That’s why today, we are excited to introduce PC support for modern displays that support refresh rates above 60Hz without any external downloads required! Players can change the maximum framerate on the app through a newly ...

  11. Detect if player has mobile or pc? - Scripting Support - Roblox

    devforum.roblox.com/t/detect-if-player-has-mobile-or-pc/2888450

    The only way to detect if someone is on mobile or PC is to do something like this: local UIS = game:GetService("UserInputService") local TouchEnabled = false. UIS.TouchTap:Connect(function() TouchEnabled = true. end) The issue with this is that it will trigger if someone is using a laptop with a touchscreen. What type of button are you trying ...