titaniczombies
#201049893Sunday, November 06, 2016 5:05 PM GMT

Hello, I'm applying to be a builder here are examples of my most recent work: https://www.roblox.com/games/538279321/A-shelter-in-distress-Showcase https://www.roblox.com/games/532494593/A-bedroom Hope I get accepted, thanks - titaniczombies
Setolo
#201056515Sunday, November 06, 2016 6:54 PM GMT

Hello! I stumbled upon this group and decided to take my go at it. I'm not exactly sure how advanced, or long your code needs to be to get into Scripters, but I'll give it a shot. It's pretty short and I did it kinda quick but here you go: -- Custom Shapes 11/06/16 - Setolo -- This script allows you to make pseudo 2D shapes on Roblox's 3D space. Shape = {} ---------------------------------------- -- So it's like this: -- sides - Amount of sides, i/e: 3 for a triangle, 4 for a square, 5 for a pentagon..etc.. -- size - Size of the parts, Y only in this version. -- rad - Radius of the object (in other words, the size of the entire shape) -- p - Parent, self explanatory. -- -- Examples are below. ---------------------------------------- Shape.new = function(sides,size,rad,p) -- if not sides then warn("Missing argument.") return end if not tonumber(sides) and not tonumber(size) then warn("Expected number, found something else.") return end sides = sides < 3 and 3 or sides rad = rad and rad or sides size = size and size or 1 --rep = rep and rep or 0 p = p and p or workspace -- local r = 360/sides local centerPoint = CFrame.new(0,0,0) -- Thinking of adding something later local m = Instance.new("Model") m.Name = "NewShape" m.Parent = p for i = 1, sides do local p = Instance.new("Part",m) p.Anchored = true p.Size = Vector3.new(1,size,1) p.CFrame = centerPoint * CFrame.Angles(math.rad(r*i),0,0) * CFrame.new(0,0,rad) end return setmetatable({ Sides=sides, Size=size, --Rep=rep, Model=m },{__index=Shape}) end function Shape:NewColor(col) for _, v in pairs(self.Model:GetChildren()) do if v and v:IsA("BasePart") then v.Color = col end end end function Shape:MovePlus(p) for _, v in pairs(self.Model:GetChildren()) do if v and v:IsA("BasePart") then v.CFrame = v.CFrame + p end end end -- Example in action below --x = Shape.new(6,20) -- Star shape penta = Shape.new(5,7) -- Pentagon :) penta.Model.Name = "Pentagon" penta.Model:MoveTo(Vector3.new(0,50,0)) cov = Shape.new(12,4,7) -- Just a circle cov:NewColor(Color3.new(0,1,0)) cov.Model.Name = "Cover" cov:MovePlus(Vector3.new(0,54.6,-1.5)) -- Ugly positioning. -- Just for fun: while true do for i = 1, 255 do penta:NewColor(Color3.new(i/255,0,0)) wait() end for i2 = 255, 1,-1 do penta:NewColor(Color3.new(i2/255,0,0)) wait() end end -----------------------------------------------------------------------------
MaseTheCreator
#201081467Monday, November 07, 2016 12:54 AM GMT

I didn't pass and I am not a modeler.
MaseTheCreator
#201081483Monday, November 07, 2016 12:54 AM GMT

I'm a Graphics designer
MaseTheCreator
#201103910Monday, November 07, 2016 11:51 AM GMT

I didn't pass. Why am I a modeler
TheRealxLucas
#201109108Monday, November 07, 2016 2:36 PM GMT

I'm A Builder I Started Building When I Was Like 11 I Build like 24/7 i made alot good games https://www.roblox.com/games/530235400/YouBurger-Bar-V1-Pre-Alpha is my newst game i been working on i created alot more u can see on my Profile
Oliver_Karlsen
#201111881Monday, November 07, 2016 3:56 PM GMT

Hey I want to apply for Music Creators go check my insta (; Insta name "OfficialOliverKarlsen (;
InnPlaneSite
#201121387Monday, November 07, 2016 7:16 PM GMT

@Zer###################l#############l#####nk that you need to work on detail and variety. Keep at it, try and make more models focusing on the small detail. Try and make it unique. @Too_Famous, Accepted Your building style is amazing, however building with small bricks isn't always the best way to get detail, sometimes basic things bring out the detailed areas. @titaniczombies, Declined I like your ideas, try to include more detail. I think the furniture could be better. Also mess around with lighting effects to add to the effect. @Setolo, Accepted Your script is interesting. I hope you can expand on this and maybe incorporate a GUI element. @MaseTheCreator, I've just checked your rank and it seems you have been wrongly promoted. We're very sorry for any inconvenience this may have caused and we will try out best to stop this from happening in the future. Thank you for letting us know, your rank should be updated shortly! @TheRealxLucas, Accepted Your building skills are interesting, work on quantity and detail. I accepted you because I felt like your building skills in "Club Troy" were pretty good considering the scene. @MusicDeveloper, Accepted You are quite talented at FL Studio. Keep it up and make a great piece. ~Xeorius
MaseTheCreator
#201123421Monday, November 07, 2016 8:10 PM GMT

Any spots left to become a moderator? I want to apply please.
Setolo
#201133832Monday, November 07, 2016 11:13 PM GMT

Thank you Xeorius, I'll consider making a GUI for it should I continue to update it further :) Also, to Builders, while the script I wrote for the application was used as an example, I'd imagine it could help with building. So feel free to use the script as you like.
MaseTheCreator
#201212020Tuesday, November 08, 2016 11:34 PM GMT

•Moderator Application I am on Roblox mostly all the day, i check in. I am a Hr in many groups. Admin in ScripthDev's group. And i would like to help this group with applications and events.
JoshGresley
#201213674Tuesday, November 08, 2016 11:57 PM GMT

########################################################################################################################################################################################################################################################################################################################################################################################
JoshGresley
#201214393Wednesday, November 09, 2016 12:07 AM GMT

Graphics; • Users with exceptional skills at Graphics Design. > Examples of previous work you've made. (REPLACE "," WITH PERIOD) https://twitter,com/Josh_Gresley
Shadealth
#201246759Wednesday, November 09, 2016 6:16 AM GMT

Graphic. Check my profile for more details.
ZerefDragneelZero
#201273716Wednesday, November 09, 2016 8:57 PM GMT

I am applying for the rank "Scripter" I have gave a good shot after watching quite a bit of videos and "Cookbook" CookBook help's new scripters. -Making a bomb with a timer and looping it -Burning someone alive if they touch ------------------------------------------ -How it goes: -The bomb needs to have a timer and a color loop -Bomb needs to be spawning random and not in the same place -Repeat on every mini map if it players the game -Example below. ------------------------------------------ local BombPart = script.Parent while BombPart.Velocity.magnitude < 0.1 do wait() end for Stepts = 1, 3 do BombPart.BrickColor = BrickColor.Red() wait(0.5) BombPart.BrickColor = BrickColor.Black() wait(0.50) end end local BombPart = Instance.new("Explosion", game.Workspace) Explosion.position = BombPart.position BombPart:Destory() --------Different Script----------------- wait(2) local explosionPart = script.Parent local explosion = Instance.new("explosion") explosion.parent = game.Workspace explosion.position = explosionPart.position explosionPart:Destroy --------Bomb's spawning different Areas-- local function createBombPartCopy() local BombPartCopy = BombPart:clone() BombPart.parent = game.Workspace local xPosition = math.random(-64, 64) Local zPosition = math.random(-64, 64) BombPart.Position = Vector3.new(xPosition, BombPartDropHeight, zPosition) end --------Burning Alive-------------------- local firepart = script.Parent firepart.Transparency = 1 local function LightOnFire(Part) local fire = Part:FindFirstChild("Fire") if not fire then fire = Instance.new("Fire") fire.Parent = Part end end firepart.touched:Connect(LightOnFire) ----------------------------------------
staromid19
#201309482Thursday, November 10, 2016 1:01 PM GMT

Video maker ########################## There's my channel If its hashtags then look up Omid Gaming It's the one with the blue roblox logo when you look it up it says 27 but I click on it it will say 178
TricoMCR
#201326908Thursday, November 10, 2016 9:02 PM GMT

I'm a beginner game developer, but I do know some things. I both script and build, so if you are interested in checking out my games please do so, since I don't want my work to go to waste.
MaseTheCreator
#201338352Thursday, November 10, 2016 11:56 PM GMT

Moderator; I would like to become a Moderator for Hidden Developers, I am active, I help people, and I can help with all of the applications sent to the forum. I create music and I make graphics. I work as a Teacher, I am a certified Google Teacher, I teach kids and adults technology and other things. Therefore I would like to become a Moderator. Respectfully, MaseTheCreator
ieatyoursandwitch123
#201338544Thursday, November 10, 2016 11:59 PM GMT

I know i'm not a moderator but pretty sure you can't apply for moderator you just have to be a member for a while and they will choose you no applying.
Xedris
#201352777Friday, November 11, 2016 3:19 AM GMT

Hello I am applying as a Builder in this group. Here is some work: https://www.roblox.com/games/439064596/CQC-Complete https://www.roblox.com/games/527233701/PHL-Congress-of-The-Philippines And then I have models that are free that I have created: https://www.roblox.com/users/103256042/inventory/#!/models #code print("Trump")
antonio54262
#201357852Friday, November 11, 2016 4:43 AM GMT

###################################################################################################################################################################################################################################################################################################################################
antonio54262
#201358027Friday, November 11, 2016 4:47 AM GMT

####################################################################################################################################################################################################################
antonio54262
#201358102Friday, November 11, 2016 4:48 AM GMT

######################################################################################
TricoMCR
#201373836Friday, November 11, 2016 3:07 PM GMT

I am also interested in becoming a Game Maker, because I both script and build. My games aren't too popular enough, but I would like you to try them out. Tectonic Earthquake Survival is my first original work-in-progress(WIP) though so check that one out first! Thank you..
InnPlaneSite
#201384737Friday, November 11, 2016 6:34 PM GMT

@MaseTheCreator, You cannot apply for anything above & including Contributor. @JoshGresley, Accepted Your designs are cool, try to think of new ideas which you may be able to incorporate into your work. @Shadealth, Accepted Your art is interesting and unique. @ZerefDragneelZero, Accepted Your code is unique, keep working on it and make some cool things. @Staromid19, Declined You're not in the group. @TricoGames, Paste some of your work on this forum thread with the role you're applying for. @Xedris, Accepted Nice work. Try to work on details as well as spacing/sizing. ~Xeorius