Αποτελέσματα Αναζήτησης
13 Απρ 2024 · UserInputService.InputBegan:Connect(function(input, gameProcessedEvent) end) colorblindcrayon (colorblindcrayon) April 13, 2024, 3:11pm #2. There is virtually no difference but it might help to understand what you’re actually doing. The top one is naming a function and assigning it to an event connection. The bottom one is using an ...
18 Ιουλ 2023 · Roblox silently “disconnects” without warning/notice after playing for roughly 5 to 20 minutes (if I’m lucky). So what happens? After playing Roblox for what seems like 5 - 20 minutes, the game seemingly “freezes” or “disconnects” but without a warning or popup screens. Everything that is server-side and other players will stop moving or hover mid-air if they were jumping with ...
15 Ιουν 2023 · Uninstall Roblox from your computer. Open the Command Prompt. You can open it by pressing Win+R > Type ““CMD”” > Press Enter. Type in the following commands: cd AppData\Local (then press enter) rmdir /s Roblox (then press enter) Enter ““y”” when asked to answer (then press enter) Restart your computer.
14 Μαρ 2022 · con:Disconnect() -- disconnect the connection making the event not fire. It disconnects RBXScriptSignal s which stop them from running. If you hook up a RBXScriptSignal to an instance, such as Part.Touched, you don’t have to disconnect it if the part is destroyed.
20 Ιουν 2023 · The :Connect(fn) is a method of roblox events. This method returns an RBXScriptConnection. This can be stored as a variable like when you return values in a regular function. The RBXScriptConnection is usually used to disconnect the event later when it’s not needed anymore through :Disconnect()
19 Μαρ 2021 · I’ve found two ways people connect events to functions. One makes an empty function so code can be slotted in immediately: -- script to toggle visbility of a Gui Frame from a serverside event game.ReplicatedStorage.ShowGui.OnClientEvent:Connect(function() script.Parent.Frame.Visible = not script.Parent.Frame.Visible -- toggle visibility end) But then I look at older scripts and older ...
5 Δεκ 2023 · From what I’ve observed, there’s an absence of a mechanism to patiently wait for the connection to stabilize and then reconnect, which seems to be a key factor in these disruptions. It’s worth noting that many other games utilize such a system, where a brief wait period allows for connection stability before initiating a reconnect. It seems peculiar that Roblox doesn’t incorporate a ...
10 Ιουλ 2023 · I definitely hope Roblox quickly installs more protected servers. Until then, I don’t see a lot of options. You could technically limit access to verified users (problem: affecting player base). You could kick players and reroute them to protected servers (problem: possiblly worse connection; people driven away because of the kick).
4 Ιαν 2021 · local a = workspace.Changed:Connect(function() end) print(a, a== Enum.ConnectionState.Connected) → Connection, false what should i do? 🙁
11 Νοε 2023 · For windows 10: Right click your network icon in windows 10 (Looks like a Wi-Fi or ethernet icon) and select “Open Network & Internet Settings”. Near the bottom, select “Change Adapter Options”. image 578×509 33.7 KB. From here, right click your primary network adapter and select “Properties”.