About me
Hello.
My name’s varjoy, I’ve been scripting since 2016, 4 years.
Projects I made/Worked for:
[🚁HELICOPTER] Lucas County V2 - Roblox
Society | Whitelisted - Roblox
(Probably forgot a lot of projects.)
(Working on news)
Game Jam 2020/2019
BlxChillStudio (BlxChillStudio - Roblox)
Lucas county(| Lucas County | - Roblox)
I’ve been doing UI’s since just 2 Years ago.
I’ve been doing GFX since 2 years ago, sadly I don’t have a portfolio.
I’ve been building for 4 Years!
I’ve worked for a lot of projects since I started programming, and made a lot of stuff.
Hope you like me!
How do I code?
I use most of the times Modules, not only to make it look more clean, aswell to complicate it for Exploiters, and efficiency.
I usually use modules to return function or Object Oriented Programming haha!
A example of a interface
Languages I code:
JavaScript, Lua,Luau,Python(still learning!!)
Examples of work
.
Programming
Roblox gifs
My own project, city game
https://cdn.discordapp.com/attachments/769324549069864980/771131376804036611/2020-10-28_19-00-06.mp4
Own made car system ^
Own made gun system > https://cdn.discordapp.com/attachments/531618005151383564/770829172557086730/2020-10-27_22-58-29.mp4
.
WIP Raid The Castle Style game
.
Maid
local lib = {}
local MakeMaid do
local index = {
GiveTask = function(self, task)
local n = #self.Tasks+1
self.Tasks[n] = task
return n
end;
DoCleaning = function(self)
local tasks = self.Tasks
for name,task in pairs(tasks) do
if type(task) == 'function' then
task()
elseif typeof(task) == 'RBXScriptConnection' then
task:Disconnect()
else
task:Destroy()
end
tasks[name] = nil
end
end;
};
index.Destroy = index.DoCleaning -- Allow maids to be stacked.
local mt = {
__index = function(self, k)
if index[k] then
return index[k]
else
return self.Tasks[k]
end
end;
__newindex = function(self, k, v)
local tasks = self.Tasks
if v == nil then
-- disconnect if the task is an event
if type(tasks[k]) ~= 'function' and tasks[k] then
if typeof(tasks[k]) == 'RBXScriptConnection' then
tasks[k]:disconnect()
else
tasks[k]:Destroy()
end
end
elseif tasks[k] then
-- clear previous task
self[k] = nil
end
tasks[k] = v
end;
}
function MakeMaid()
return setmetatable({Tasks={},Instances={}},mt)
end
end
lib.MakeMaid = MakeMaid
lib.new = MakeMaid
return lib
.
Payment
Payment goes according to task/game, I don’t take percent unless I am working for a game 30+ Daily players.
Payment can suit your needs and be fair for you and me!
Accepting USD and Robux amounts over 10K.
Contact
Contact me on discord if possible or PM in DevForum!
varjoy#4366