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)
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
- Leaderstats with DataStores: 300-750
- Small Modules: 200-300
- Big Modules: 350-600
- Other: FREE+
UI
- Custom Player List: 150-300
- Status: 100
- Surface UI: 50
- Billboard UI: FREE
- Anything with scripting: 100-500
- Other: FREE-300
GFX
- Group/Game icon: 200
- Currency icon: 150
- Other: 100+
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