MASOL scripting portfolio

About Me

Hi there! I am a scripter! I’ve been scripting since early 2015.
I’m the developer of a game called Downhill Rush.
I’m here in the devforum offering some work in exchange for money.
I basically write what u want in english but in code.

Showcase

The code below is for particle effects
module.Collection = {}
module.Particles = function(name, args, enable, servercall)
	if enable then
		local pe = script.Parent.ParticleEffects[name]
		local x = pe:GetChildren()
		for i,part in args do
			local particles = {}
			for i,v in x do
				v = v:Clone()
				v.Parent = part
				table.insert(particles, v)
			end  
			local tab = module.Collection[part]
			table.insert(tab, {name, particles})			
		end
		table.clear(x) x = nil
	else
		for each, part in args do
			for each,tab in module.Collection[part] do -- v is either an attachment or some fx
				if tab[1] == name then
					for i,v in tab[2] do 
						if v:IsA("Attachment") then 
							local x = v:GetChildren()
							for i, fx in x do 
								fx.Enabled = false  debris:AddItem(fx, 3)
							end table.clear(x) x = nil
						else 
							v.Enabled = false debris:AddItem(v, 3) -- v 
						end
					end
					table.clear(tab[2])
					tab[2] = nil
					tab[1] = nil
				end
			end
		end
	end
	if not servercall then
		re:FireServer("Particles", name, args, enable) -- tell the other players
	end
end
A build system in progress

image
image
image
image
image

An NPC chasing you

https://www.youtube.com/watch?v=jUpIKy3LOcE

Scripting something in 20 minutes

https://www.youtube.com/watch?v=KRNrPxzF4tY

Games id like to present

The Warzone - Roblox

Downhill Rush - Roblox

Downhill Rush Advance - Roblox
https://www.youtube.com/watch?v=riBLx9T4Svo


Glorious Battle - Roblox

Some gameplay

Black hole

https://gyazo.com/e12021a247d2b0b94df47112e4b009de

My success as a dev the past year

Payment READ

required voice chat and working microphone.
The plan: We voice call for 1 hour and I share my screen and show you the progress being made.
At the end of the hour IF you are satisfied with the work you pay me.

Contact

You can contact me here on discord:
Masol1102

Happy developing! :slight_smile:

4 Likes

Hello, I’m theawesomeSC4sim from the Sauga Transit Bus Simulator. After reading your post, we may have a DataStore commission offer for you. Would you like to join our Discord server and DM me for more info?

Our group can be found here: Sauga Transit - Roblox

Portfolio has been updated. Includinga new game added

Portfolio has been updated. My skills as a scripter have improved dramatically and is more optimized