enow.com 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. [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 ...

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

  5. Simple M1 Combat System - Community Resources - Roblox

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

    Well here is a simple M1 Combat System with uptilt, downslam, blocking and stuns. It can definitely still be improved, but I tried my best to make this a ‘decent’ combat system.

  6. How to give a badge - Scripting Support - Developer Forum -...

    devforum.roblox.com/t/how-to-give-a-badge/1196641

    But if they don’t, then we can reward them: local Part = script.Parent. local IDToAward = 000000 --Replace this with your BadgeID. local BadgeService = game:GetService("BadgeService") Part.Touched:Connect(function(Hit) local Player = game.Players:GetPlayerFromCharacter(Hit.Parent) if Player then. if not BadgeService:UserHasBadgeAsync(Player ...

  7. [Fixed] Realistic First Person - Scripting Support - Roblox

    devforum.roblox.com/t/fixed-realistic-first-person/2626064

    Hey! I’m making a script to make the character visible when zommed in. This game is in R6. Script name: First Person. Location: StarterCharacterScripts. local Player = game.Players.LocalPlayer. local Char = Player.Character. local function a(v) if v:IsA("Part") and v.Name ~= "Head" and v.Name ~= "Torso" then.

  8. Creating a Coin Collection System - Community Tutorials - Roblox

    devforum.roblox.com/t/creating-a-coin-collection-system/559120

    Step 4: Setting up the coins. Now, we need it so when the player hits the coin, it adds one to their Coins or if you want to, you can make it add more than one for every coin so players get rich faster. We do this by creating a script inside the coin that says this: local player = game:GetService("Players")

  9. How do i make a dash? - Scripting Support - Developer Forum -...

    devforum.roblox.com/t/how-do-i-make-a-dash/1584179

    For a very basic dash, you could insert a BodyVelocity into the HumanoidRootPart of the character every time Q is pressed, then set the velocity of it to be the lookVector of the HumanoidRootPart * number. if debounce or processed then. return. end. if key.KeyCode == Enum.KeyCode.Q then.

  10. SimplePath - Pathfinding Module - Community Resources - Roblox

    devforum.roblox.com/t/simplepath-pathfinding-module/1196762

    SimplePath is an open-source pathfinding module that gives you the ability to quickly create a pathfinding script for humanoids and non-humanoids with just a few lines of code. Pathfinding is done using Roblox’s PathfindingService. This module works by using a “repetitive” approach to pathfinding. The pathfinding agent moves a more efficient path when computed repetitively instead of ...

  11. Dynamic FOV Script - Smooth Camera Zoom - Community Resources ......

    devforum.roblox.com/t/dynamic-fov-script-smooth-camera-zoom/2781094

    This script adjusts the field of view (FOV) of the camera based on the speed of the player’s character. The script uses a lerp function for a smooth transition between the current and target FOV values to create a more visually appealing effect. The FOV is continuously updated as the player moves, and if the character dies, the FOV is reset ...