|
Known Group Owners:
https://www.roblox.com/My/Groups.aspx?gid=2850040
An (exclusive) trading group.
500+ members in 4 weeks, and counting. |
|
|
|
|
My app hasn't been answered.
Here it is:
"Greetings. I would like to apply to become a scripter. Here is an example of my work: https://www.roblox.com/Dragon-Force-item?id=446339023
The description on the description of the script that I provided." |
|
|
Oh wait, didn't see the "have*" part. Sorry |
|
|
|
|
|
UNANSWERED AS OF YET
Known Group Owners:
https://www.roblox.com/My/Groups.aspx?gid=2850040
An (exclusive) trading group.
500+ members in 4 weeks, and counting. |
|
|
|
No need to be rude, they will soon enough.
|
|
|
|
|
|
Response? anyone? please? |
|
|
I'll fix my script soon and apply again |
|
|
Hello. I would like to apply to be a Scripter again. Here is the link to be fixed script. The description is in the description of the script:
https://www.roblox.com/Dragon-Force-item?id=446339023 |
|
|
|
|
EMILY080Join Date: 2009-01-05 Post Count: 2 |
Hello, I would like to apply for the builder rank.
Example of my work:
https://www.roblox.com/games/445289036/Bobs-Burgers-GRAND-OPENING
I'm also working on another set, but it's not very presentable right now because it's in the early stages of building.
|
|
|
I'd like to apply for the Scripter rank.
Here's a short, functional sample of stuff taken from my prototyping place (https://www.roblox.com/games/323770078/prototyping):
It involves Bezier curves, which is what I was learning at the time I made it.
/4vKWTihM (Pastebin)
|
|
GenxiusJoin Date: 2014-09-19 Post Count: 98 |
Hello there I would like to apply for the rank : Builder because I can build. |
|
|
BryanFehrJoin Date: 2012-09-06 Post Count: 131 |
Hello, this Script is inserted into my Murder Survival game, I've been working at this game for a year now, and it's pretty much complete.
This is my Points Management Script, along with Administration/Marketplace Service for the game.
wait(1)
script.Parent.Parent:WaitForDataReady()
local oldPlayer = script.Parent.Parent
function save()
oldPlayer:WaitForDataReady()
oldPlayer:SaveNumber("RobberWins",oldPlayer.RobberWins.Value)
oldPlayer:SaveNumber("EnemyWins",oldPlayer.EnemyWins.Value)
oldPlayer:SaveNumber("GamePoints",oldPlayer.Points.Value)
oldPlayer:SaveNumber("GameLevel",oldPlayer.Level.Value)
if oldPlayer.RobberWins.Value <= 15 then
b = game:GetService("BadgeService")
b:AwardBadge(oldPlayer.userId, 180875116)
end
if oldPlayer.EnemyWins.Value <= 15 then
b = game:GetService("BadgeService")
b:AwardBadge(oldPlayer.userId, 181023526)
end
if oldPlayer.Points.Value >= 100000 then
b = game:GetService("BadgeService")
b:AwardBadge(oldPlayer.userId, 181029534)
end
end
script.Parent.Parent.Points.Changed:connect(save, Value)
script.Parent.Parent.EnemyWins.Changed:connect(save, Value)
script.Parent.Parent.RobberWins.Changed:connect(save, Value)
script.Parent.Parent.Level.Changed:connect(save, Value)
newPlayer = script.Parent.Parent
if game:GetService("MarketplaceService"):PlayerOwnsAsset(newPlayer,441816713) then
newPlayer.Membership.Value = "Admin"
elseif game:GetService("MarketplaceService"):PlayerOwnsAsset(newPlayer,441818986) then
newPlayer.Membership.Value = "Mod"
elseif game:GetService("MarketplaceService"):PlayerOwnsAsset(newPlayer,441827970) then
newPlayer.Membership.Value = "Ultra"
elseif game:GetService("MarketplaceService"):PlayerOwnsAsset(newPlayer,441819756) then
newPlayer.Membership.Value = "Crazy"
elseif game:GetService("MarketplaceService"):PlayerOwnsAsset(newPlayer,441822198) then
newPlayer.Membership.Value = "Classic"
end |
|