[CLOSED] IAmPinleon // Scripter, UI designer, and GFX artist!

About Me

Hi there! I am @IAmPinleon, offering my services as a scripter. I have been scripting for about 6 months now and have worked on my own games, Ghirardelli Factory Tycoon, Avengers Gallery Showcase, Run of Rage, and much more! I have just started to do GFX design, but I have been doing UI for a bit.

Commissions Available

Commissions taken:

  • 2/2 scripting
  • 0/1 UI design
  • 0/1 GFX design

NOTE: If I am taken as e.g, a scripter and a UI designer, I will only take away a commission from my main job.

Showcase

Scripting
MessagingService

This script will make a message appear on every server if the owner has joined a server.

local messagingService = game:GetService("MessagingService")
local players = game:GetService("Players")

messagingService:SubscribeAsync("Announcement", function(message)
	print(message.Data)
	print(message.Sent)
	
	for i, player in pairs(players:GetPlayers()) do
		local clonedGui = script.MessageGui:Clone()
		clonedGui.Parent = player:WaitForChild("PlayerGui")
		clonedGui.Message.Text = message.Data
		print("Success")
	end
end)

messagingService:SubscribeAsync("DeleteAnnouncement",function(message)
	for i, player in pairs(players:GetPlayers()) do
		local gui = player.PlayerGui:WaitForChild("MessageGui")
		if gui then
			gui:Destroy()
			print("Success")
		else
			error("No gui found")
		end
	end
end)

game.Players.PlayerAdded:Connect(function(player)
	if player.Name == "IAmPinleon" then
		messagingService:PublishAsync("Announcement","The owner has joined a server!")
	end
end)
UI design

GFX design

Notes

  • I can do percents, but for GFX, I will only do a set payment.
  • For scripting I will accept 20%+, and for UI I accept 15%+
  • I don’t do simulator scripts.

Availability

I am currently available 1-3 hours every day depending on how many have hired me.

Payment

I would like group funds as my payment, but via T-Shirt would also be fine.

Prices are negotiable, and I only accept robux as payment. Here are my prices:

Scripting
  • Leaderstats without DataStores: 100-250 :robux_light:
  • Leaderstats with DataStores: 300-750 :robux_light:
  • Small Modules: 200-300 :robux_light:
  • Big Modules: 350-600 :robux_light:
  • Other: FREE+
UI
  • Custom Player List: 150-300 :robux_light:
  • Status: 100 :robux_light:
  • Surface UI: 50 :robux_light:
  • Billboard UI: FREE
  • Anything with scripting: 100-500 :robux_light:
  • Other: FREE-300 :robux_light:
GFX
  • Group/Game icon: 200 :robux_light:
  • Currency icon: 150 :robux_light:
  • Other: 100+ :robux_light:

Contact

You can contact me here on the Developer Forum but not on Discord or Twitter.


After Work is Done

You can put a poll vote after I have finished work with you.

  • Great
  • Good
  • Neutral
  • Bad
  • Super Bad

0 voters

6 Likes

If you’ve never been hired how do you think you can rate yourself? :thinking:

2 Likes

Oh ok, I’ll delete it. Thank you for noticing!

2 Likes

What type of scripts can you get from Other?

2 Likes

Just any other type of script that was not listed. I will make a list of scripts I won’t do.

2 Likes

Why dont you have any past work? Even if you were not hired, you should still show past work that you made for practice. If you haven’t done any of these at all, you shouldn’t have a portfolio in the first place. Also, you should change it to show results on the poll, so people who have not hired you dont need to vote to see the results.

4 Likes

For scripts, you shouldn’t just throw your scripts out like that. Majority (of people) who are hiring usually don’t know how to script, so they probably don’t know what the heck that says. I suggest showcasing a game where you scripted the whole thing, or GIF’s of your scripts, which most people prefer. or both. Also, you should only showcase graphics if you made 100% of it. im not calling you out, or claiming you didn’t make it, its just a question, Did you make the trophy thing in the ui next to the twitter button?

Edit: If you don’t know how to make gifs/record videos you should definitely check out gyazo, you can use it to record gifs, videos, or take screenshots, like the snipit tool.
Or, theres this one on mobile, (pretty sure android only) named XRecorder, you can record and edit videos.
XRecorder
gyazo

2 Likes

The UIs are decent! Maybe give some more examples for the scripting section instead of one whole script. Maybe get some clips of some things functioning, such as a wrecking ball moving left and right.

3 Likes