Benjonas2
|
  |
| Joined: 17 May 2011 |
| Total Posts: 6129 |
|
|
| 30 Dec 2011 10:58 AM |
....ALL OF WIJ (me) DEPENDS ON YOU!
http://www.roblox.com/Forum/ShowPost.aspx?PostID=60559152
-Ben |
|
|
| Report Abuse |
|
|
ibsonic
|
  |
| Joined: 24 May 2010 |
| Total Posts: 10521 |
|
| |
|
SockHop
|
  |
| Joined: 29 Dec 2011 |
| Total Posts: 409 |
|
|
| 30 Dec 2011 10:59 AM |
| Maybe a model you inserted had some sort of banscript virus? |
|
|
| Report Abuse |
|
|
w33w03
|
  |
| Joined: 16 Apr 2011 |
| Total Posts: 5683 |
|
| |
|
SockHop
|
  |
| Joined: 29 Dec 2011 |
| Total Posts: 409 |
|
| |
|
|
| 30 Dec 2011 11:00 AM |
look through all of your models and read the scripts, if the script has something to do with removing you or something, delete the script. or maybe when you were editing an admin script, you put your name on the ban list instead of the admin list.
~ swag shads |
|
|
| Report Abuse |
|
|
Benjonas2
|
  |
| Joined: 17 May 2011 |
| Total Posts: 6129 |
|
|
| 30 Dec 2011 11:02 AM |
shad
I removed everyone who was on the ban list in the admin. And everyone who goes there is banned. It is just plain wierd. I think someone is a h4x0r and banned everyone....
-Ben |
|
|
| Report Abuse |
|
|
SockHop
|
  |
| Joined: 29 Dec 2011 |
| Total Posts: 409 |
|
|
| 30 Dec 2011 11:04 AM |
They can only hack server by server.
Try updating the place to a baseplate, or something totally different and see if it still happens. It most definitely won't. |
|
|
| Report Abuse |
|
|
|
| 30 Dec 2011 11:07 AM |
| Is your admin free models? Or have you uploaded another freemodel your not sure of? |
|
|
| Report Abuse |
|
|
Benjonas2
|
  |
| Joined: 17 May 2011 |
| Total Posts: 6129 |
|
|
| 30 Dec 2011 11:19 AM |
Well the admin is owen0202 admin commands (the official WIJ admin) so I am sure that is fine. And the way to open the doors is this script JGA1 made for the VS Estates.
Lol I have like 10 people helping me with this. I put this on scripting helpers and they gave me a link to a scanner and stuff but idk.
-Ben |
|
|
| Report Abuse |
|
|
|
| 30 Dec 2011 11:20 AM |
| KEV IS IN DAH HOUSE, I SHALL PROBABLY ASSIST. |
|
|
| Report Abuse |
|
|
| |
|
| |
|
| |
|
Benjonas2
|
  |
| Joined: 17 May 2011 |
| Total Posts: 6129 |
|
| |
|
|
| 30 Dec 2011 11:25 AM |
| Aw, scripting is my thing... :c I'm an ex-SH'er. Y U NO HAVE SCRIPT FOR ME TO FIX? |
|
|
| Report Abuse |
|
|
Benjonas2
|
  |
| Joined: 17 May 2011 |
| Total Posts: 6129 |
|
|
| 30 Dec 2011 11:26 AM |
This is the script I am not sure about. It is the script that gets the admins to open the doors.
function save(player, type, name, score) if (type == "String") then player:SaveString(name, score) elseif (type == "Number") then player:SaveNumber(name, score) elseif (type == "Instance") then player:SaveInstance(name, score) elseif (type == "Boolean") then player:SaveBoolean(name, score) end end
function load(player, type, name) if (type == "String") then return player:LoadString(name) elseif (type == "Number") then return player:LoadNumber(name) elseif (type == "Instance") then return player:LoadInstance(name) elseif (type == "Boolean") then return player:LoadBoolean(name) end end --[[ function giveitem(player, weapon) given = weapon:clone() given.Parent = player.Backpack end --]] function onPlayerRespawned(newPlayer)
if (newPlayer["Admin"].Value == true) then --game.Soundscape:findFirstChild("Gun"):clone().Parent = newPlayer.Backpack --game.Soundscape:findFirstChild("Ban"):clone().Parent = newPlayer.Backpack --game.Soundscape:findFirstChild("TeleportOut"):clone().Parent = newPlayer.Backpack end
end
admins = {"benjonas2", "benjonas2alt", "benjonas2alt2", "silentswords", "ballinoheir21", "prometherion", "dizzdazz4", "basketsgolba", "cj10127", "roblocksuser", "daugion", "supermansdog", "owen0202", "player"} deadmin = {"micol2242", "shootingraw1", "studioscript"} banned = {""} unbanned = {"splitsecondary", "0supadude0", "persistentdata", "xrainingslayerx", "roblocksuser"}
function checkOkToLetIn(name, list) for i = 1, #list do -- convert strings to all upper case, otherwise we will let in -- "Username" but not "username" or "uSERNAME" if (string.upper(name) == string.upper(list[i])) then return true end end return false end
function onPlayerEntered(newPlayer)
if (checkOkToLetIn(newPlayer.Name, banned)) then newPlayer:remove() return end local admin = Instance.new("BoolValue") admin.Name = "Admin" admin.Value = false admin.Parent = newPlayer
local banned = Instance.new("BoolValue") banned.Name = "Banned" banned.Value = false banned.Parent = newPlayer
newPlayer:WaitForDataReady()
if (checkOkToLetIn(newPlayer.Name, admins)==true) then newPlayer.Admin.Value = true save(player, "Boolean", "Admin", player.Admin.Value) end if (checkOkToLetIn(newPlayer.Name, deadmin)==true) then newPlayer.Admin.Value = false save(player, "Boolean", "Admin", player.Admin.Value) end
newPlayer.Admin.Value = load(newPlayer, "Boolean", "Admin") newPlayer.Banned.Value = load(newPlayer, "Boolean", "Banned")
if (newPlayer.Banned.Value==true) then if (checkOkToLetIn(newPlayer.Name, unbanned)==false) then newPlayer:remove() return else newPlayer.Banned.Value = false save(player, "Boolean", "Banned", player.Banned.Value) end end
newPlayer.Changed:connect(function (property) if (property == "Character") then onPlayerRespawned(newPlayer) end end)
end
function onPlayerRemoving(player) print("Attempting to save score for " .. player.Name) save(player, "Boolean", "Admin", player.Admin.Value) save(player, "Boolean", "Banned", player.Banned.Value) end
game.Players.PlayerAdded:connect(onPlayerEntered) game.Players.PlayerRemoving:connect(onPlayerRemoving) game.Workspace.ChildAdded:connect(function() stuff = workspace:GetChildren() for i=1, #stuff do if (stuff[i].className == "Tool") then if (stuff[i].Parent == game.Workspace) then stuff[i]:remove() end end end end)
-Ben |
|
|
| Report Abuse |
|
|
Splecki
|
  |
| Joined: 31 Dec 2009 |
| Total Posts: 5487 |
|
|
| 30 Dec 2011 11:29 AM |
| Remove the script, upload it, and then see if it still happens. If it does, it wasn't the script, if it doesn't, then just leave the script out and be happeh. C: |
|
|
| Report Abuse |
|
|
|
| 30 Dec 2011 11:30 AM |
if (newPlayer.Banned.Value==true) then if (checkOkToLetIn(newPlayer.Name, unbanned)==false) then newPlayer:remove()
There's your issue. |
|
|
| Report Abuse |
|
|
Benjonas2
|
  |
| Joined: 17 May 2011 |
| Total Posts: 6129 |
|
|
| 30 Dec 2011 11:30 AM |
Look here because it is something important! Read all the posts!
http://www.roblox.com/Forum/ShowPost.aspx?PostID=60559152#60562393
-Ben |
|
|
| Report Abuse |
|
|
Benjonas2
|
  |
| Joined: 17 May 2011 |
| Total Posts: 6129 |
|
|
| 30 Dec 2011 11:31 AM |
Just saw your post. Thanks. I will try it now.
-Ben |
|
|
| Report Abuse |
|
|
|
| 30 Dec 2011 11:31 AM |
| Wait, whoops. I thought it said banned... |
|
|
| Report Abuse |
|
|
Benjonas2
|
  |
| Joined: 17 May 2011 |
| Total Posts: 6129 |
|
| |
|
|
| 30 Dec 2011 11:35 AM |
| Wait. Why is there an unbanned list? |
|
|
| Report Abuse |
|
|
Benjonas2
|
  |
| Joined: 17 May 2011 |
| Total Posts: 6129 |
|
|
| 30 Dec 2011 11:36 AM |
idk
i took it from the VS Estates because they had GUI button doors and scripts that go with that work and chiz
-Ben |
|
|
| Report Abuse |
|
|