City Pedia Web Search

Search results

  1. Results From The WOW.Com Content Network
  2. 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 ...

  3. Scripting Basics - Beginner guide to lua and Roblox

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

    Variables are simply a way to store a single thing in them. They can hold anything, and are one of the most important features in all programming languages. In lua they can be local, meaning they can be used where they are created, or global meaning they can be used anywhere. variable = "My string" -- A global.

  4. Lua Learning Official Website! - Community Resources - Roblox

    devforum.roblox.com/t/lua-learning-official-website/496330

    Lua Learning is a community-driven platform (in a Roblox game) created and designed to interactively teach users how to program in Lua, all for free! It is front page Top Rated as well as featured on the new Learn & Explore sort! It features an interactive lessons system similar to that of Codecademy, nearly 200 user created and reviewed ...

  5. [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 ...

  6. BlockLua | The blazingly fast visual scripting plugin for ... -...

    devforum.roblox.com/t/blocklua-the-blazingly-fast-visual-scripting-plugin-for...

    Welcome to BlockLua! BlockLua is the next-generation visual scipting plugin for Roblox. Compared to EventBlocks (the previous plugin), BlockLua is much faster and has a completely new engine and the UI is much more consistent. Due to the completely revamped engine, it has WAY better performance and it’s able to handle large scripts with ease. Keep in mind that BlockLua is slightly more ...

  7. How I can change the Humanoid Health to 0? - Roblox

    devforum.roblox.com/t/how-i-can-change-the-humanoid-health-to-0/1438673

    I want to change the player humanid health to 0 when he click on the GUI.(I am using one local script and is inside the StarterGui) local plr = game:GetService("Players").LocalPlayer local character = plr.Character or plr.CharacterAdded:Wait() local humanoid = character:FindFirstChild("Humanoid") local menuGUI = script.Parent.Parent.Parent script.Parent.MouseButton1Click:Connect(function ...

  8. Understand 99% of scripts in 1h or less! Learn Luau here - Roblox

    devforum.roblox.com/t/understand-99-of-scripts-in-1h-or-less-learn-luau-here/...

    After seeing how people normally create tutorials for programming languages I decided to make something that follows that exact format perfectly. This is not a guide on how to do a specific action this is one to do whatever action you want! Most stuff is in the google slides If I got anything down wrong or have an suggestion please post it here! this took around 2 days to make.

  9. Change a parts color - Scripting Support - Developer Forum -...

    devforum.roblox.com/t/change-a-parts-color/1099694

    Color3 values operate on a 0-1 scale. The 0-255 scale is for RGB (Red/Green/Blue) values.. If you want to use the RGB scale to create a Color3 value, use the Color3.fromRGB() constructor (I forgot about this at the time of making my post, thank you @colbert2677 for reminding me).

  10. How to rotate a model using scripts - Scripting Support - Roblox

    devforum.roblox.com/t/how-to-rotate-a-model-using-scripts/1398023

    Set a primary part of the model and then change the primary part of the cframe: For example to rotate the model 90 degrees to the left you would do: rotation = CFrame.Angles(0, math.rad(90), 0) modelCFrame = model:GetPrimaryPartCFrame() model:SetPrimaryPartCFrame( modelCFrame * rotation ) Make sure that the front face of the primary part is ...

  11. Roblox How To | Creating a Simple Shift to Sprint Script!

    devforum.roblox.com/t/roblox-how-to-creating-a-simple-shift-to-sprint-script/...

    This will be easy to learn and quick! This is for those people who get free models for Shift To Sprint Scripts. Step 1 - Making The Script First of all, you want to make a new local Script inside of StarterPlayerScripts which can be found by going to StarterPlayer, Name it whatever you want! Step 2 - Coding The Script Next, we want to open the ...