Drastic

@Drastic

S4 will be mine.... someday 😅

Joined on Aug 28, 2024

These are my tutorials for scripting, if you are new to scripting please refer to my first post.

  • Table of Contents What are they? What can they be used for? Why are they useful? How do i use them?Setup Running ModuleScripts Functions in ModuleScripts How they work
     Like  Bookmark
  • This post will cover; Tables, For Loops, Vector3, RBXScriptSignal Table of Contents TablesCreating a TableWhat is an Index? What is a Value? Working with a Table Table Visualized
     Like  Bookmark
  • [!CAUTION] knowledge needed: tables, variables, services, RBXScriptSignals, etc Tweenservice is used to smoothly transition properties of a instance, for example you could change a parts transparency from 0 -> 1 over the course of 4 seconds. Creating Tweens To create a tween you need to get the TweenService object and use the :Create() method. local TweenService = game:GetService("TweenService") local Tween = TweenService:Create(Instance, TweenInfo, PropertyTable)
     Like  Bookmark
  • Very basic things for beginners looking to learn how to start their luau scripting journey Table of Contents VariablesAbout VariablesWhat is a Variable Use Cases How to use Variables Creating Variables
     Like  Bookmark
  • This is anything you will need to know PRIOR to writing or learning how to write any code. Table Of Contents Data TypesNumbers Strings Booleans Expressions Data Types
     Like  Bookmark