Yahoo Web Search

Search results

  1. 4 days ago · Special events in Roblox are hardly unheard of, but Roblox The Classic stands out for its celebration of the game’s history, somewhat awkwardly named though it may be. Among these callbacks to ...

  2. 6 days ago · With all the Portals activated, you’ll earn three Tix. How to complete Character Doors in Roblox The Classic. This Quest involves testing your Classic knowledge. Find the checkered flag on the ...

  3. People also ask

    • Connecting Functions to Events
    • Disconnecting Functions from Events
    • Waiting For Events to Fire

    You can connect a function to an event using Connect() to execute code each time the event fires. Most events pass arguments to their connected functions when they fire. For example, the BasePart.Touched event passes the object that touched the Part, and the Players.PlayerAdded event passes the Playerthat joined your experience. It's the best pract...

    In Luau, the RBXScriptSignal data type represents events. The RBXScriptSignal:Connect() method returns an RBXScriptConnection object. If you connect a function to an event but don't want the function to call in subsequent event firings, disconnect the function from the event by calling the RBXScriptConnection:Disconnect()method. When Luau destroys ...

    If you want a script to yield or pause until a specific event fires, use the RBXScriptSignal.Wait()function. The RBXScriptSignal.Wait() function returns the event's arguments. You can assign these arguments to variables where RBXScriptSignal.Wait()is called.

  4. Navigate to the Creator Dashboard. With the Events tab selected, click the Create Event button. On the event creation screen, click the Select Experience widget, choose the experience associated with your event, and click the Confirm button. Enter the event name, description, a starting date/time at least 15 minutes in the future, and an ending ...

  5. Event Organizers. As a Roblox creator, you can host virtual events through the Roblox Creator Events program. If you're interested in participating, apply to become a voluntary Event Organizer for the Creator Events Program. To preview events hosted by our community creators, visit our past events page which contains a video library of our past ...

  6. Click the ⊕ button that appears to the right of the container's name and insert a RemoteEvent instance. Rename the instance to describe its purpose. Once you've created a RemoteEvent, it can facilitate one-way communication from client to server, from server to client, or from the server to all clients. Client → Server.

  7. Built-In Events. Many objects have built-in events provided by their APIs that automatically respond to specific actions or changes related to those objects. For example, a player's Character touching a BasePart automatically fires a Touched event. Most built-in events are synchronous, so you can connect a function to follow custom behaviors in ...

  1. People also search for