of     1   

stationmaster
#151095969Thursday, December 04, 2014 11:48 PM GMT

Hello, well first what I need is a script to load,end,set outscore, and set mode for a holo facility that also allows more than one person use the commands, it would be great if you could make it so people in a specific group with a certain rank can use it only so I don't have to type out all names. Currently with the script I'm using it wont let me set outscore or game mode and to add another name to it I have to make a copy of the script because it can only hold one name at once for each script. I also have to use a outscore script that automatically changes outscore to 11 and its unchangeable in game. It would really be a appreciated, if you can make it for me please message me when your done. I would really appreciate it and thank you in advance.
Bobby_Darin
#151100942Friday, December 05, 2014 12:52 AM GMT

[ Content Deleted ]
stationmaster
#151111625Friday, December 05, 2014 3:04 AM GMT

Well that was immature and unnecessary, if you don't want to do it, don't respond or be insulting. Is there anyone who isn't a complete imbecile anymore? Somebody please give me reassurance in this community.
instawin
#151111992Friday, December 05, 2014 3:10 AM GMT

@station no one here is going to completely make a whole script for you from scratch for free, but they will debug if you have anything you need to debug. this is why we need SH back..
stationmaster
#151112206Friday, December 05, 2014 3:14 AM GMT

@Insta Yeah I figured as much, was just hoping there would be a kind enough person to do so. I'm more of a builder and I needed this script for some creations.
instawin
#151112766Friday, December 05, 2014 3:24 AM GMT

yeah, well good luck with that. really, roblox Lua may seem intimidating at first, but it gets easier. some simple admin commands wouldn't be too hard if you delved into Lua, you should try it out. it gets fun :P
Bobby_Darin
#151116562Friday, December 05, 2014 4:41 AM GMT

Don't be lazy and make it yourself. Learn lua.
OMEGA27304
#151122835Friday, December 05, 2014 8:57 AM GMT

You can't change the fact that trolls won't help you. Look for humans. I've had past experience of trolls like sadisticnub. Hes not sadistic, just a troll. You fight trolls with half trolls like me. kk? Good luck, no ones ever wished ME good luck.
Bobby_Darin
#151133663Friday, December 05, 2014 6:55 PM GMT

I help people Except I'd define this as making a bunch of stuff for you that's different
stationmaster
#151138423Friday, December 05, 2014 8:56 PM GMT

I'm not commanding anyone to make this for me, I'm just asking if somebody would be as kind to do it for me. It's not like I wouldn't give credit.
chimmihc
#151138732Friday, December 05, 2014 9:03 PM GMT

you guys do know that since sh is gone scripters are willing to help?
PiraxeZ
#151158247Saturday, December 06, 2014 1:37 AM GMT

function onTouched(part) if part.Parent ~= nil then local h = part.Parent:findFirstChild("Humanoid") if h~=nil then local teleportfrom=script.Parent.Enabled.Value if teleportfrom~=0 then if h==humanoid then return end local teleportto=script.Parent.Parent:findFirstChild(modelname) if teleportto~=nil then local torso = h.Parent.Torso local location = {teleportto.Position} local i = 1 local x = location[i].x local y = location[i].y local z = location[i].z x = x + math.random(-1, 1) z = z + math.random(-1, 1) y = y + math.random(2, 3) local cf = torso.CFrame local lx = 0 local ly = y local lz = 0 script.Parent.Enabled.Value=0 teleportto.Enabled.Value=0 torso.CFrame = CFrame.new(Vector3.new(x,y,z), Vector3.new(lx,ly,lz)) wait(3) script.Parent.Enabled.Value=1 teleportto.Enabled.Value=1 else print("Could not find teleporter!") end end end end end script.Parent.Touched:connect(onTouched) --Basic Teleportation Script by meh XiiGhostIIX Follow me on twitter :D

    of     1