Skip to content

Hopefully my last roblox 2016 client emulation script. | 2016L (December)

Notifications You must be signed in to change notification settings

scotdotwtf/Final16

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 

Repository files navigation

    :::::::::: ::::::::::: ::::    :::     :::     :::          :::   ::::::::  
    :+:            :+:     :+:+:   :+:   :+: :+:   :+:        :+:+:  :+:    :+: 
    +:+            +:+     :+:+:+  +:+  +:+   +:+  +:+          +:+  +:+        
    :#::+::#       +#+     +#+ +:+ +#+ +#++:++#++: +#+          +#+  +#++:++#+  
    +#+            +#+     +#+  +#+#+# +#+     +#+ +#+          +#+  +#+    +#+ 
    #+#            #+#     #+#   #+#+# #+#     #+# #+#          #+#  #+#    #+# 
    ###        ########### ###    #### ###     ### ########## ####### ########  

   @scotdotwtf, @colastee, made with love <3

what

So like this is a script that tries to emulate ROBLOX's 2016 user interface, graphics, and more.

This is my 4th one lol. I'm hoping this is my last one.

script

loadstring(game:HttpGet("https://raw.githubusercontent.com/scotdotwtf/Final16/main/loader.lua"))()

documentation

  • Final16 has a simple module based loading system that allows you to choose what you want to load and not to load.

  • To specify what modules you want to load, simply specify getgenv().modules = {} with the modules you would like to load.

  • Here's an example of loading only the camera and graphics module:

getgenv().modules = {"camera.lua", "graphics.lua"}
loadstring(game:HttpGet("https://raw.githubusercontent.com/scotdotwtf/Final16/main/loader.lua"))()
  • The cool thing with final 16 is that it loads all module even if you don't specify it. Here's how I did it:

-- * LINE 16, scotdotwtf/Final16/loader.lua
modules == nil then
    getgenv().modules = { } --> modules
end

contribute

Want to contribute? Simply make a pull request with your module, fix, or other addon and I will merge or communicate.