|
| 23 Jul 2010 10:18 AM |
just writeee them down and tell us what they do
thnxx
we can al be scripting masters ur help will help others learn |
|
|
| Report Abuse |
|
|
|
| 23 Jul 2010 10:21 AM |
| just write em down don't be shy |
|
|
| Report Abuse |
|
|
ellosss
|
  |
| Joined: 15 Mar 2009 |
| Total Posts: 7030 |
|
| |
|
EpicDucks
|
  |
| Joined: 28 Apr 2009 |
| Total Posts: 2015 |
|
|
| 23 Jul 2010 10:23 AM |
There are lots of nice scripts here: http://wiki.roblox.com/index.php/Absolute_beginner%27s_guide_to_scripting
|
|
|
| Report Abuse |
|
|
789cab
|
  |
| Joined: 13 Jul 2009 |
| Total Posts: 3145 |
|
|
| 23 Jul 2010 11:05 AM |
ok put someone in lighting game.Workspace.VICTIM.Parent = game.Lighting |
|
|
| Report Abuse |
|
|
789cab
|
  |
| Joined: 13 Jul 2009 |
| Total Posts: 3145 |
|
|
| 23 Jul 2010 11:05 AM |
| game.Lighting.TimeOfDay = "1:00" |
|
|
| Report Abuse |
|
|
TaslemGuy
|
  |
| Joined: 10 Jun 2009 |
| Total Posts: 12174 |
|
| |
|
|
| 26 Jul 2010 10:06 AM |
| u can request scripts aswell n people will reply to u with the answer or ask why ur script shud b fixed |
|
|
| Report Abuse |
|
|
blocco
|
  |
| Joined: 14 Aug 2008 |
| Total Posts: 29474 |
|
| |
|
Krammy
|
  |
| Joined: 29 Jun 2008 |
| Total Posts: 3599 |
|
|
| 26 Jul 2010 10:08 AM |
| No requests. Read the rules. |
|
|
| Report Abuse |
|
|
|
| 26 Jul 2010 10:09 AM |
| the rules say i can do this so neerrrr |
|
|
| Report Abuse |
|
|
blocco
|
  |
| Joined: 14 Aug 2008 |
| Total Posts: 29474 |
|
|
| 26 Jul 2010 10:09 AM |
Whoops. Wrong one:
print("You are not ready for " .. _VERSION) |
|
|
| Report Abuse |
|
|
| |
|
HDRetro
|
  |
| Joined: 26 Jun 2010 |
| Total Posts: 806 |
|
|
| 26 Jul 2010 10:10 AM |
| I forgot about _VERSION. XD |
|
|
| Report Abuse |
|
|
Krammy
|
  |
| Joined: 29 Jun 2008 |
| Total Posts: 3599 |
|
|
| 26 Jul 2010 10:10 AM |
| Where does it say you CAN? I can only see it saying "CAN'T". |
|
|
| Report Abuse |
|
|
|
| 26 Jul 2010 10:11 AM |
well it can it says it
ill copy n paste it 4 u |
|
|
| Report Abuse |
|
|
|
| 26 Jul 2010 10:13 AM |
Krammy, It's rude to eat the reply button.
Here's my IP ban script. though i never made the model containing all the Proxies and b& names, or word filter system, and even making the part that bans an IP when you ban someone. Gahh, now i remember just how much work there's left for this >.<
Last time i check'd, it did work.
_G.Names = {} -- The name of every player and their IPs _G.IPs = {} -- The IPs of every player and their name _G.LocalBan = {} LocalBan.Names = {"Player"} -- use just names, if they join with that account, their ip will be added aswell LocalBan.IPs = {} -- IPs of LocalBans will be added so they cannot return with alternate accounts. _G.KnownBan = {} -- Names of trouble makers, and a list of common proxy IPs _G.Exempt = {} Exempt.Names = {} -- names of friends who are aloud to use banned proxies Exempt.IPs = {} -- the IPs of friends who can use banned proxies _G.Explicit = {} -- A List of banned words used it the content monitoiring system, this list will be loaded from -- A Model
function fixText(text) final = "" for i=1,text:len() do char = string.byte(text:sub(i,i)) if char >= 48 and char <= 57 then final = final .. text:sub(i,i) elseif char >= 65 and char <= 90 then final = final .. text:sub(i,i) elseif char >= 97 and char <= 122 then final = final .. text:sub(i,i) end end return final end
function getCaps(text) final = "" for i=1,text:len() do char = string.byte(text:sub(i,i)) if char >= 65 and char <= 90 then final = final .. text:sub(i,i) end end return final end
function getIP(where,text) if where[text] ~= nil then return where[text] end end
function checkBan(name,ip) final = false for i,v in pairs(LocalBan.Names) do if v == name then newip = getIP(Names,v) if LocalBans.IPs[newip] == nil then LocalBan.IPs[newip] = {} end LocalBan.IPs[newip][#LocalBan.IPs[newip]+1] = name LocalBan.IPs[newip][0] = newip final = true end end for i,v in pairs(LocalBan.IPs) do if v[0] == ip then final = true v[#v+1]=name end end for i,v in pairs(KnownBan.Names) do if v == name then newip = getIP(Names,v) if KnownBan.IPs[newip] == nil then KnownBan.IPs[newip] = {} end KnownBan.IPs[newip][#KnownBan.IPs[newip]+1] = name KnownBan.IPs[newip][0] = newip final = true end end for i,v in pairs(Known.IPs) do if v[0] == ip then final = true v[#v+1]=name end end return final end
function checkExempt(name,ip) final = false ipfound = false for i,v in pairs(Exempt.Names) do if v == name then final = true end end for i,v in pairs(Exempt.IPs) do if v == ip then final = true ipfound = true end end if final == true and added == false then Exempt.IPs[#Exempt.IPs+1]=ip end return final end
function kickPlayer(name) game.Players[name]:Remove() end
function newIP(new) local ip = new.Name ipfix = ip:find(":") ip = ip:sub(1,ipfix-1) local name = nil local nameFired = false function newName(new) if nameFired == false then nameFired = true name = new.Name end end game.Players.ChildAdded:connect(newName) repeat wait(.1) until name ~= nil print(name,ip) Names[name]=ip if IPs[ip] == nil then IPs[ip]={} IPs[ip].Time = 0 end IPs[ip][#IPs[ip]+1] = name band = checkBan(name,ip) exempt = checkExempt(name,ip) if band == true and exempt == false then kcikPlayer(name) end end
game.NetworkServer.ChildAdded:connect(newIP)
|
|
|
| Report Abuse |
|
|
|
| 26 Jul 2010 10:15 AM |
u can writw scripts down coz mrdoombringer says so
her is wot he said so ive copied n pasted it for u
This is the place to request an entire script built for yourself. There is a place to ask for a script to be made for yourself. That's what it's here for, if you want something made, ask someone to do it for yourself. get them to read this entire thing, ge them to do it. |
|
|
| Report Abuse |
|
|
Krammy
|
  |
| Joined: 29 Jun 2008 |
| Total Posts: 3599 |
|
|
| 26 Jul 2010 10:15 AM |
@chak,
READ. http://www.roblox.com/Forum/ShowPost.aspx?PostID=13247888 |
|
|
| Report Abuse |
|
|
Krammy
|
  |
| Joined: 29 Jun 2008 |
| Total Posts: 3599 |
|
|
| 26 Jul 2010 10:16 AM |
| Let this thread die or else be banned. |
|
|
| Report Abuse |
|
|
| |
|
|
| 26 Jul 2010 10:18 AM |
OooOoooOOOo Krammy, everyone fears being banned like NOTHING else.
because you can only have ONE account and there's only ONE proxy on the internet, not. I've had tons of accounts banned, deleted, and IP banned. I get bored some times, and
That reminds me, i have to go make a couple of alts today >.< |
|
|
| Report Abuse |
|
|
| |
|
zeke505
|
  |
| Joined: 26 May 2008 |
| Total Posts: 15765 |
|
|
| 26 Jul 2010 10:19 AM |
"This isn't the place to request an entire script built for yourself. There isn't a place to ask for a script to be made for yourself. That's selfish, if you want something made, do it yourself. Read this entire thing, do it."
Please learn to read. |
|
|
| Report Abuse |
|
|
|
| 26 Jul 2010 10:20 AM |
| who cares lol if people will do it they can do it |
|
|
| Report Abuse |
|
|