Gamer.Site Web Search

Search results

  1. Results From The WOW.Com Content Network
  2. [Full Tutorial] How to script on Roblox | Beginners!

    devforum.roblox.com/t/full-tutorial-how-to-script-on-roblox-beginners/1991385

    How do script [ Update Version], 2022/2023 Introduction Hey there! Today, I will be teaching you how to script from scratch - all the basics you need to know when coming to script on Roblox with a better and updated version! [If you’re a beginner] After this tutorial, you should learn: Understand the very basics of scripting on Roblox. In this tutorial, we’ll be talking about: Variables ...

  3. Learn to Script / Learn to Code in 5 Steps - Roblox

    devforum.roblox.com/t/learn-to-script-learn-to-code-in-5-steps/1043259

    Preface. This guide tackles the topic of learning how to code from a broad enough perspective that the fundamentals of each step can be applied to other aspects of your life when learning other skills. Ever since I learned the basis of coding with Roblox Lua, I felt that something was missing within the sphere of “Learn to Code” / “How to ...

  4. [PLUGIN] ScriptMate - Learn to script now! (15K+ Installs) -...

    devforum.roblox.com/t/plugin-scriptmate-learn-to-script-now-15k-installs/1972156

    As a result, I created a straight-to-the-point tutorial series, alongside this plugin, both designed to feature everything you need to get into scripting on Roblox. Whether you’re brand new to scripting, or looking to improve your skills, the series is designed to be something that everyone can benefit from, without being an unnecessarily ...

  5. Lua Scripting Starter Guide - Community Tutorials - Roblox

    devforum.roblox.com/t/lua-scripting-starter-guide/394618

    Lua Scripting Starter Guide Author: @DarkSinisterPVP Helper(s): @Supersaiyan122 Author’s Note <details><summary>Click to open the letter</summary>Picking up programming and learning it for the first time works just like any other hobby–art, music, sports, photography, etc.–although, it may be difficult to know where to start as a beginner, especially if you’ve never had experience with ...

  6. Scripting Basics - Beginner guide to lua and Roblox

    devforum.roblox.com/t/scripting-basics-beginner-guide-to-lua-and-roblox/359838

    Hello! 😄 I’ve written this guide/tutorial to help people who are new to scripting on Roblox learn some basic concepts of scripting, and hopefully understand it better. This is definitely missing a lot of important information, but I will be updating it more in the future! If you’re brand new you should read The Basics below, but if you know about variables, functions, and data types you ...

  7. How to Make a Simple Punch Script - Community Tutorials - Roblox

    devforum.roblox.com/t/how-to-make-a-simple-punch-script/1413574

    How it works: When you press the letter P on your keyboard or the mobile button your character will preform the punching animation and deal damage to any humanoid in front of it. Step 1: Setting up First create a local script in StarterCharacterScripts. Then, create a Remote Event in ReplicatedStorage called Punch, and lastly, a Script in ServerScriptService. Step 2: Creating The Animation I ...

  8. Simple M1 Combat System - Community Resources - Roblox

    devforum.roblox.com/t/simple-m1-combat-system/2560101

    This is really cool! The combat system itself is pretty great, in all honesty. It’s nice to see that you took the time to create a whole combat system along with animations, UI, and all the other stuff, and decided to open-source it.

  9. How to make leaderstats in roblox studio | For beginners

    devforum.roblox.com/t/how-to-make-leaderstats-in-roblox-studio-for-beginners/...

    How to make leaderstats in roblox studio | For beginners 1) Make a server script inside ServerScriptService | game.ServerScriptService You can name the script however you want, it doesn’t matter. 2) We need to detect if the player joins First of all, you need to detect if a player joins. We’ll do: game.Players.PlayerAdded:Connect(function(player) end) Great, now we have successfully ...

  10. How would you create a weld between two parts, using a script ......

    devforum.roblox.com/t/how-would-you-create-a-weld-between-two-parts-using-a...

    The script will check if they are both BaseParts (the main part class, includes unions, normal parts, meshparts, etc). Then, it creates a weld and sets the Part0 and Part1 parameters to the corresponding parts, and then uses the part’s CFrame inverses to set the weld through the C0 and C1 properties.

  11. Making Require Scripts on Roblox

    devforum.roblox.com/t/making-require-scripts-on-roblox/2769763

    Introduction Welcome to my tutorial! This tutorial is for creating Require Scripts and using the require function for importing certain scripts. To start off, a require script is a line of code used in game to import a certain GUI or even a custom character. In this tutorial, I will provide a step by step tutorial on how to make a require script. The Module Script The module script is an ...