|
| 15 Aug 2016 10:22 PM |
working auto team for all the groups who cant seem to code 5 lines of script: https://www.roblox.com/AUTO-4-ME-item?id=459815064
working terminal for all the groups who cant seem to do simple coding: https://www.roblox.com/best-term-item?id=466514328
plays a specific song on entered: https://www.roblox.com/HAHHAH-SURPRISE-item?id=462255883
faster spawning script for lazy people: https://www.roblox.com/SPAWN-4-ME-item?id=459815239
working leaderboard for all the people who cant look up linked leaderboard: https://www.roblox.com/LEADERBOARD-item?id=459813122
team only weps to make your guns do more damage(lol):https://www.roblox.com/TEAM-ONLY-WEPS-item?id=459814312
pretty cool health gui:https://www.roblox.com/Group-Health-GUI-item?id=459812783
this is something a friend made a long time ago not even sure how it works you can figure it out:https://www.roblox.com/mayb-works-item?id=460080382
hide name gui for all the kids who cant make it themselves(lol):https://www.roblox.com/gui-that-ever1-wished-trhey-had-item?id=459815571
oh ANd this is the gun for the group "R E A V E R S" : https://www.roblox.com/REAVERS-GUN-LEAKED-item?id=459814626 - Can also give you the fort if u want
anyway most of this stuff isnt mine i just found it essential that some groups take this cause im tired of raiding broken tech. and i leaked his gun cause he's annoying and he didn't even pay for it. also im really bored.
|
|
|
| Report Abuse |
|
|
red_duke
|
  |
| Joined: 04 Mar 2016 |
| Total Posts: 3771 |
|
| |
|
| |
|
|
| 15 Aug 2016 10:25 PM |
TCD base has a pretty dank terminal system
with Great Vengeance and Furious Anger |
|
|
| Report Abuse |
|
|
|
| 15 Aug 2016 10:25 PM |
https://www.roblox.com/games/467747015/lol
with Great Vengeance and Furious Anger |
|
|
| Report Abuse |
|
|
| |
|
Arkitek
|
  |
| Joined: 09 May 2015 |
| Total Posts: 13095 |
|
|
| 15 Aug 2016 10:32 PM |
why not just put it all into a set so we can subscribe to it
|
|
|
| Report Abuse |
|
|
|
| 15 Aug 2016 10:32 PM |
heres a holo: https://www.roblox.com/games/303045732/leaked-holo-af
|
|
|
| Report Abuse |
|
|
|
| 15 Aug 2016 10:35 PM |
2 more forts:
https://www.roblox.com/games/303044378/SELLING-PM-A-PRICE https://www.roblox.com/games/303046852/SELLING-PM-A-PRICE
|
|
|
| Report Abuse |
|
|
|
| 15 Aug 2016 10:36 PM |
another one: https://www.roblox.com/games/313044773/Hitmarker-Stronghold-Devry
its pretty crappy but hey
|
|
|
| Report Abuse |
|
|
|
| 15 Aug 2016 10:44 PM |
I think my mom is home i gtg
https://www.roblox.com/games/460075295/HITMARKER-STRONGHOLD
|
|
|
| Report Abuse |
|
|
|
| 15 Aug 2016 10:52 PM |
good gun if u wanna use: https://www.roblox.com/Shockwave-item?id=417216935
terminal: https://www.roblox.com/mine-not-yours-item?id=313086125
idk: https://www.roblox.com/u-wV-Z-Fv-G-item?id=364364477
cool admin:https://www.roblox.com/ADMIN-item?id=459813804
|
|
|
| Report Abuse |
|
|
| |
|
|
| 15 Aug 2016 10:55 PM |
https://www.roblox.com/when-it-comes-to-it-unconfirmed-is-really-paul-item?id=467289265
|
|
|
| Report Abuse |
|
|
wehosh
|
  |
| Joined: 09 Oct 2008 |
| Total Posts: 137 |
|
|
| 15 Aug 2016 10:58 PM |
Lol I thought this stuff standard. Lol and very basic.
Also you forgot auto uniform script. Bunch of variations but I prefer this:
Uniforms={
{Rank=1;Shirt=0;Pants=0}; {Rank=2;Shirt=0;Pants=0}; {Rank=3;Shirt=0;Pants=0}; {Rank=4;Shirt=0;Pants=0}; {Rank=5;Shirt=0;Pants=0}; {Rank=6;Shirt=0;Pants=0}; {Rank=7;Shirt=0;Pants=0}; {Rank=8;Shirt=0;Pants=0}; {Rank=9;Shirt=0;Pants=0}; {Rank=10;Shirt=0;Pants=0}; {Rank=11;Shirt=0;Pants=0}; {Rank=12;Shirt=0;Pants=0}; {Rank=13;Shirt=0;Pants=0}; {Rank=14;Shirt=0;Pants=0}; {Rank=15;Shirt=0;Pants=0}; {Rank=16;Shirt=0;Pants=0}; {Rank=17;Shirt=0;Pants=0}; {Rank=18;Shirt=0;Pants=0}; {Rank=255;Shirt=0;Pants=0}; };
IgnoreUniforms={ "", "", "" };
function GiveUniform(Player) wait(1) local Character=Player.Character if not Character then return false end; for i=1,#IgnoreUniforms do if Player.Name==IgnoreUniforms[i] then return false end; end; for i=1,#Uniforms do wait() if Player:GetRankInGroup(1225776) >= Uniforms[i].Rank then for i,v in pairs(Character:children()) do if v:IsA'Shirt' or v:IsA'Pants' then v:remove(); end; end; local Shirt,Pants=Instance.new("Shirt"),Instance.new("Pants"); Shirt.ShirtTemplate="http://www.roblox.com/asset/?id="..Uniforms[i].Shirt-1; Pants.PantsTemplate="http://www.roblox.com/asset/?id="..Uniforms[i].Pants-1; Shirt.Parent=Player.Character; Pants.Parent=Player.Character; end; end; end; game:service'Players'.ChildAdded:connect(function(Player) if not Player:IsA'Player' then return end; if Player.Character then ypcall(GiveUniform,Player); end; Player.CharacterAdded:connect(function(Character) ypcall(GiveUniform,Player); end); end); |
|
|
| Report Abuse |
|
|
|
| 15 Aug 2016 10:59 PM |
i had one but id rather people waste their money and give it to me : ^ )
|
|
|
| Report Abuse |
|
|
wehosh
|
  |
| Joined: 09 Oct 2008 |
| Total Posts: 137 |
|
|
| 15 Aug 2016 11:00 PM |
| Lets see who notices the group ID I left in the script? Lol. |
|
|
| Report Abuse |
|
|
wehosh
|
  |
| Joined: 09 Oct 2008 |
| Total Posts: 137 |
|
|
| 15 Aug 2016 11:01 PM |
@un_confirmed
Capitalism at its finest. Love it. |
|
|
| Report Abuse |
|
|
| |
|
|
| 15 Aug 2016 11:02 PM |
heres another gun: https://www.roblox.com/item.aspx?id=481284864
|
|
|
| Report Abuse |
|
|
| |
|
|
| 15 Aug 2016 11:04 PM |
thank you good sir btw good job on the scrimmage
|
|
|
| Report Abuse |
|
|
|
| 15 Aug 2016 11:08 PM |
compass so u can be like marco polo: https://www.roblox.com/item.aspx?id=481286908
|
|
|
| Report Abuse |
|
|
|
| 15 Aug 2016 11:10 PM |
for all the silly gooses or geese who like to server glitch: https://www.roblox.com/item.aspx?id=481287706
|
|
|
| Report Abuse |
|
|
| |
|