About Me
Hello! I am iialexidai, I joined Roblox back in 2016 and I’ve been developing on Roblox since late 2017. I mostly develop on Roblox for fun and to entertain myself. I am able to script, build and design Guis/UIs.
Scripting
- My most preferred part of Roblox development since it is the point where you bring your creations to life. I understand Lua, Javascript (Mostly for backend things like node.js) and a bit of C#, however I am still building my knowledge on the vast Roblox Api.
Building
- I can build stuff such as buildings and hallways that are somewhat realistic along with other various simple models. I’d recommend you check the My Work portion of my portfolio as it shows what I am capable of building.
UI/Gui Design
- I am capable of making somewhat detailed screen, surface and billboard Guis, I’m also able to script most stuff related to UIs. I am however unable to make UIs which require making GFX in 3rd party programs.
My Work
Games I've created
I currently haven’t worked on games for other groups or anyone else, the games below are ones I’ve created for my own groups.
NexGen Legacy | A game which acts as a hub to allow people to visit my older games I created while I was still learning to build and script.
Coming Soon! - Roblox
NexGen Research Facility | My current main project which is a underground research facility, currently there’s no specific goal or story line in the game. It is more of something for me to express my imagination.
(Discontinued) NexGen Research Facility - Roblox
Examples of my work
Rank Center System | An automated rank center system which allows people to select a rank which they’ll automatically be ranked to using a rank management backend I created using the opensource noblox.js library. (https://github.com/suufi/noblox.js/)
NexGen Legacy - YouTube
NexGen Legacy | A central hub game which consitsts of a full screen screenGui. It allows players to visit and learn about the lore or development behind my older games I created while learning Roblox.
NexGen Legacy - YouTube
A elevator car using the future lighting option
A very basic group rank door script | This is a very basic script and I am capable of writing more complex scripts. This is more or less to show how I like to layout my code.
-- Services
local Players = game:GetService('Players')
-- Settings
local Group = 0 -- Your Group Id
local MinimumRank = 0 -- The rank someone has to be above to open the door
local MaximumRank = 0 -- The rank someone needs to be below to open the door set to 256 to disable
local WaitTime = 5
-- Variables
local RankDoor = workspace.GroupRankDoor -- Where is it located
local IsActive = false
-- Functions
function OpenDoor()
IsActive = true
RankDoor.CanCollide = false
RankDoor.Transparency = .5
wait(WaitTime)
RankDoor.CanCollide = true
RankDoor.Transparency = 0
IsActive = false
end
RankDoor.Touched:Connect(function(Player)
if Player.Parent and Players:GetPlayerFromCharacter(Player.Parent) then
local Player = Players:GetPlayerFromCharacter(Player.Parent)
if Player:GetRankInGroup(Group) >= MinimumRank and Player:GetRankInGroup(Group) <= MaximumRank and IsActive == false then
IsActive = true
OpenDoor()
end
end
end)
Availability
I am available for three to four hours during week days. Then five to eight hours on weekends and some holidays. These are my baseline times however I can typically work longer than these times. I mostly prefer to do short-term work over long-term work.
Payment
Prices are negotiable, currently I only accept Robux payments . Since I only really do short-term work I don’t accept %. I will occasionally work for free in certain cases at my own discretion.
Contact
You can contact me here on the Developer Forum or via a Roblox private message. I do have a Discord however I prefer that you contact me on the Dev Forum first so I know what your name and tag are.
Thanks!
My portfolio is a work in progress so feel free to leave any recommendations or constructive criticism below.