|
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
|
|
SetoloJoin Date: 2008-11-25 Post Count: 117 |
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
----------------------------------------------------------------------------- |
|
|
I didn't pass and I am not a modeler. |
|
|
|
I didn't pass. Why am I a modeler |
|
|
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 |
|
|
Hey I want to apply for Music Creators go check my insta (;
Insta name "OfficialOliverKarlsen (; |
|
|
@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
|
|
|
Any spots left to become a moderator? I want to apply please. |
|
SetoloJoin Date: 2008-11-25 Post Count: 117 |
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. |
|
|
•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. |
|
|
######################################################################################################################################################################################################################################################################################################################################################################################## |
|
|
Graphics;
• Users with exceptional skills at Graphics Design.
> Examples of previous work you've made.
(REPLACE "," WITH PERIOD)
https://twitter,com/Josh_Gresley |
|
ShadealthJoin Date: 2014-06-30 Post Count: 119 |
Graphic. Check my profile for more details.
|
|
|
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)
---------------------------------------- |
|
|
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 |
|
TricoMCRJoin Date: 2015-08-28 Post Count: 106 |
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. |
|
|
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 |
|
|
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.
|
|
XedrisJoin Date: 2015-12-29 Post Count: 163 |
|
|
|
################################################################################################################################################################################################################################################################################################################################### |
|
|
#################################################################################################################################################################################################################### |
|
|
###################################################################################### |
|
TricoMCRJoin Date: 2015-08-28 Post Count: 106 |
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.. |
|
|
@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
|
|