Know-Legal 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. 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.

  8. Help with M1 script - Scripting Support - Developer Forum -...

    devforum.roblox.com/t/help-with-m1-script/2952845

    So, I have M1 script for a battlegrounds game, and it works all good. I just need to make it so it resets the combo when you haven’t punched in awhile (e.g 2 seconds). Here’s my script. game.ReplicatedStorage.Events.M1.OnServerEvent:Connect(function(plr) if plr.Character.Values.CanAttack.Value then plr.Character.Values.CanAttack.Value = false local playbackSpeeds = {2.5, 3, 2} local pitch ...

  9. 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 ...

  10. How to make a SAVING leaderstats in Roblox Studio!

    devforum.roblox.com/t/how-to-make-a-saving-leaderstats-in-roblox-studio/3101470

    In this post, I will show you how to make a SAVING leaderstats! Step 1: Add a script in ServerScriptService and name it “leaderstats”. You should have an empty script except a line that has “print("Hello World!")”. Delete it. Step 2: Make a function when a player joins the game. game.Players.PlayerAdded:Connect(function(player) end) Step 3: Add a “leaderstats” folder inside the ...

  11. 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.