zaniac10
|
  |
| Joined: 18 Aug 2009 |
| Total Posts: 10000 |
|
|
| 19 Aug 2015 01:09 AM |
| i made a youtube tutorial back in like 2011 on how to make a vip door, using a free model script, now, i can make an even better vip door by myself |
|
|
| Report Abuse |
|
|
|
| 19 Aug 2015 01:13 AM |
Hard word forever pays....oh wrong thing...
Lol, I just found out that I use to copy and republish models back in '09. We were such noobs :p |
|
|
| Report Abuse |
|
|
zaniac10
|
  |
| Joined: 18 Aug 2009 |
| Total Posts: 10000 |
|
| |
|
Iterum
|
  |
| Joined: 30 Jan 2009 |
| Total Posts: 1982 |
|
|
| 19 Aug 2015 01:29 AM |
"now, i can make an even better vip door by myself"
hate to be an ass but that's kind of humorous that it took 4 years to dot hat
-ChiefDelta/Discommodate/iC7G/Vulnerite + 100 other accounts |
|
|
| Report Abuse |
|
|
zaniac10
|
  |
| Joined: 18 Aug 2009 |
| Total Posts: 10000 |
|
|
| 19 Aug 2015 01:35 AM |
i started scripting a year ago
|
|
|
| Report Abuse |
|
|
cntkillme
|
  |
| Joined: 07 Apr 2008 |
| Total Posts: 44956 |
|
|
| 19 Aug 2015 01:36 AM |
Uhh...?
'i made a youtube tutorial back in like 2011 ' 2015 - 2011 = 4 'started scripting a year ago' |
|
|
| Report Abuse |
|
|
|
| 19 Aug 2015 01:37 AM |
@cnt
He didn't script for 3 years
2015-2011 = 4 4 - 3 = 1
tah dah |
|
|
| Report Abuse |
|
|
Garybyte
|
  |
| Joined: 24 Jul 2014 |
| Total Posts: 789 |
|
|
| 19 Aug 2015 01:39 AM |
I've done this in the last 30 mins and I've only been scripting for a month man
local dFolder = nil local dArray = nil local mTemplate = script:FindFirstChild("Template") local dArray = {}
local dParts = game.ServerStorage.Parts local dHalls = dParts.Halls local dTurns = dParts.Turns local dRooms = dParts.Rooms
local MaxColumnSize = 10 local MaxRowSize = 10
local Dungeon = {}
function Dungeon.Init() dFolder = Instance.new("Folder", game.Workspace) dFolder.Name = "Dungeon" for pIteration = 1, MaxColumnSize do dArray[pIteration] = {} for cIteration = 1, MaxRowSize do local cTemplate = mTemplate:Clone() local rSet = dRooms:GetChildren() local hSet = dHalls:GetChildren() local pPart = nil local pId = nil local MinRot = nil local MaxRot = nil --Room Logic if pIteration == 1 and cIteration == 1 then MinRot = 0 MaxRot = 1 pId = "r" pPart = dRooms:GetChildren()[math.random(1, #dRooms:GetChildren())]:Clone() elseif dArray[pIteration][pIteration - 1][1] == "r" then MinRot = 0 MaxRot = 3 pId = "t" pPart = dTurns:GetChildren()[math.random(1, #dTurns:GetChildren())]:Clone() else local Set = dTurns:GetChildren() MinRot = 1 MaxRot = 2 pPart = dTurns:GetChildren()[math.random(1, #Set)]:Clone() end cTemplate.Parent = game.Workspace cTemplate.Name = "c" .. tostring(pIteration) .. "r" .. tostring(cIteration) cTemplate.Position = Vector3.new(cTemplate.Size.X * cIteration, 0 , cTemplate.Size.Z * pIteration) pPart.Parent = game.Workspace pPart:SetPrimaryPartCFrame(cTemplate.CFrame * CFrame.new(Vector3.new(0, 5, 0)) * CFrame.Angles(0, math.rad(math.random(MinRot, MaxRot) * 90), 0)) dArray[pIteration][cIteration]["Object"] = {pId, pPart.PrimaryPart.Rotation.Y} end end end
return Dungeon
|
|
|
| Report Abuse |
|
|
zaniac10
|
  |
| Joined: 18 Aug 2009 |
| Total Posts: 10000 |
|
|
| 19 Aug 2015 01:39 AM |
i made a tutorial about how to make a vip door with a free model, since i didnt know how to script
now i know how to make my own after learning scripts a year ago |
|
|
| Report Abuse |
|
|
zaniac10
|
  |
| Joined: 18 Aug 2009 |
| Total Posts: 10000 |
|
|
| 19 Aug 2015 01:40 AM |
| i dont know how you possibly learned all that in a month but wow, i am a really bad scripter |
|
|
| Report Abuse |
|
|