Yahoo Search Busca da Web

Resultado da Busca

  1. Scripts are plain text files that let you add custom, dynamic behavior to your experiences. You can use scripts to trigger in-game events, respond to player input, save player data, create leaderboards, spawn enemies, control NPC behavior, and much, much more.

  2. Learn how to write and use scripts in Roblox, including server-side and client-side scripts, module scripts, and patterns. Find examples of script structure, data sharing, custom events, and encapsulation.

    • Overview
    • Platform Scripting
    • DisappearingPlatform Part
    • Disappear Script
    • Variables
    • Making disappear
    • Reappearance

    This article teaches how to make a platform in Roblox Studio that appears and disappears using Lua script, including creating the platform part, writing variables for the platform, making functions for disappearing and appearing of the platform, using while loop to run these functions continuously with waiting time between each change etc.

    Learn how to apply a script to parts in Roblox Studio, making a platform appear and disappear. This can be used in platforming experiences for users to time their jumps carefully.

    Create a part that acts as the platform, make it large enough for users to jump on, move it into proper location and set its Anchored property to true.

    Add a new script called "Disappear" under the DisappearingPlatform part in Explorer window and delete default code inside.

    Start off your script by creating variables using local variableName = variableValue syntax where names are written in camel case format like thisJustLikeThis . Copy code for creating variable named 'platform' with value of 'script.Parent'.

    Group code into function called 'disappear', change CanCollide property of platform object to false & Transparency property is 1 (invisible). Test if works by pressing Play button.

    Write another function opposite of disappear function which makes CanCollide property true & Transparency 0 (not invisible).

  3. 24 de nov. de 2019 · Learn the basics of Roblox Lua, the official language of Roblox, with this tutorial. It covers print, strings, numbers, arithmetic operators, concatenation, and variables.

  4. This article will cover how to start coding in Roblox, introducing common concepts like scripts, data types, and variables. By the end, you'll be able to type out code that displays messages in Roblox Studio.

  5. Learn how to script common tasks in Roblox with code samples and 3D models. Browse samples by category, such as action manager, admin commands, cloud config, crossfading, and more.

  6. 20 de set. de 2022 · Understand the very basics of scripting on Roblox. In this tutorial, we’ll be talking about: Variables, DataTypes. Attributes, Properties. Math library. Conditions,Functions, Loops. Return, Remotes. Gamepasses,DevProducts. Tools,Player, Character, Animation. TweenService, Camera. ClickDetectors & ProximityPrompts. Mouse & UserInputService.