Gamer.Site Web Search

Search results

  1. Results From The WOW.Com Content Network
  2. The server has shut down (Error Code: 288) - Roblox

    devforum.roblox.com/t/the-server-has-shut-down-error-code-288/3023382

    Ok as of right now I cannot play any Roblox game for more than 2 minutes without this happening and since I am not able to report bugs (the system is so great right) there is nothing I can do about it

  3. How to use isKeyDown () on UserInputService? - Roblox

    devforum.roblox.com/t/how-to-use-iskeydown-on-userinputservice/536323

    IsKeyDown returns a boolean based on if the Enum code you pass is currently being held down. You can check already on the IsKeyDown documentation page for information about what it is and how to use it. If you actually searched, surely you should’ve come across this page, no? You’ve got an XY Problem going here though. You always want to ...

  4. How to make a countdown timer - Scripting Support - Roblox

    devforum.roblox.com/t/how-to-make-a-countdown-timer/1048558

    How do I make a countdown timer GUI? Hello! Here is the simplest way of doing it: local TIMER = 10 -- starting time local textLabel = script.Parent -- path to your text label local function CountDown() repeat textLabel.Text = TIMER -- change text every second wait(1) TIMER -= 1 until TIMER <= 0 textLabel.Text = "" --[[further code]] end

  5. Every teleport fails - nothing to see on status.roblox.com

    devforum.roblox.com/t/every-teleport-fails-nothing-to-see-on-statusrobloxcom/...

    As the title says on status.roblox.com is nothing, but currently about every teleport inside a game fails [Place to place]. [Example [I wanted to play the game]: Mini RTS Player from 1600 to 1300 in ~10 minutes. [There are now ~300 players only] Open matches [Take 5-90 minutes mostly] went from ~100-300 to around 30. Every teleported failed for me there. ]

  6. Keep the zcanary and zintegration channels semi-public (if ... -...

    devforum.roblox.com/t/keep-the-zcanary-and-zintegration-channels-semi-public-if...

    Hi there! I’m the guy running Roblox-Client-Tracker and a few other cool open-source projects. Since about 2015 I’ve been harmoniously live-tracking changes to Roblox. It’s been a rich set of somewhat live data that helps fill the information void on the cool things Roblox is currently working on for the engine. Recently it was brought to my attention that Roblox is introducing some new ...

  7. Game servers randomly shut down - Game Design Support - Roblox

    devforum.roblox.com/t/game-servers-randomly-shut-down/3063286

    If the cause is not the server itself, Roblox has random shutdown of servers that have been running for days when rescheduling server resources on AWS. It just happens sometimes, during core server updates, etc. So, Firstly- I didn’t know where to post this. So I’m posting it here. Secondly- I am NOT the game developer, I am a moderator and ...

  8. [Resolved] ROBLOX instantly crashes on launch!

    devforum.roblox.com/t/resolved-roblox-instantly-crashes-on-launch/2335822

    ruubloo (spectro) May 13, 2023, 10:52am #1. I have been facing crash on launch issues with ROBLOX for a while now, I have tried reinstalling my roblox by completing deleting all files relating to roblox, launch roblox on a clean boot and resetting my pc’s settings and nothing worked so far and I have had this issue for just over a day now.

  9. Servers shutting down on their own - Engine Bugs - Roblox

    devforum.roblox.com/t/servers-shutting-down-on-their-own/3037929

    Den_S (Den_S) June 24, 2024, 3:50pm #1. Recently (within the last week), servers in my game (Theme Park Tycoon 2 - Roblox) started to shut down on their own. This mostly seems to happen to servers that receive a significant amount of load. These servers don’t hard-crash, but seem to soft shut down (invoking BindToClose, for example).

  10. Roblox shut down Destroys my game

    devforum.roblox.com/t/roblox-shut-down-destroys-my-game/3073970

    From there, you can just open up the Asset Manager, go to the “Places” object, right click and copy the ID of your subplace as the place to teleport Players to. Lillmannen_real (Lill) July 17, 2024, 10:09pm #3. i already scripted it and make it function game link: Survive Flight 871 [floor is lava mode UPDATE] - Roblox.

  11. Rounding Number to Nearest Whole - Scripting Support - Roblox

    devforum.roblox.com/t/rounding-number-to-nearest-whole/102515

    Here’s a quicker way of rounding in cases where performance is the must: Add 0.5 to n, putting it over the bar if it’s already >0.5, then subtract the “remainder” decimal from it. The simplest way to round would be by using math.round (displayed below). return math.round(number * 10^decimalPlaces) * 10^-decimalPlaces.