generic image
Processing...
  • Games
  • Catalog
  • Develop
  • Robux
  • Search in Players
  • Search in Games
  • Search in Catalog
  • Search in Groups
  • Search in Library
  • Log In
  • Sign Up
  • Games
  • Catalog
  • Develop
  • Robux
   
ROBLOX Forum » Game Creation and Development » Scripting Helpers
Home Search
 

Re: I NEED THE BEST SCRIPTER

Previous Thread :: Next Thread 
ReyMysterioFan619 is not online. ReyMysterioFan619
Joined: 17 Oct 2008
Total Posts: 13
19 Apr 2009 09:57 AM
Hey I need the best scripter. I need a script for teleporting people like when i say "backstage (name)" then the person goes backstage. I also need a script that when I say "/m (whatever)" it shows on the screen.
Report Abuse
gonomola3800 is not online. gonomola3800
Joined: 27 Sep 2008
Total Posts: 12910
19 Apr 2009 10:02 AM
I think it's not possible
Report Abuse
scarblade666 is not online. scarblade666
Joined: 30 Nov 2008
Total Posts: 104
19 Apr 2009 10:07 AM
i think it is possible i saw a plance where when you typed b/ you would teleport to a set location
Report Abuse
MicroUser is not online. MicroUser
Joined: 29 Mar 2009
Total Posts: 3601
19 Apr 2009 10:08 AM
[ Content Deleted ]
Report Abuse
Person299 is not online. Person299
Joined: 28 Feb 2008
Total Posts: 7952
19 Apr 2009 12:09 PM
I dont think Meelo is gonna help you with this.
And this is possible, actually its quite simple.
Report Abuse
MrNicNac is not online. MrNicNac
Joined: 29 Aug 2008
Total Posts: 26567
19 Apr 2009 12:10 PM
And i dont think you need a teleport (name) you could just make it a local text and function
Report Abuse
Meelo is not online. Meelo
Joined: 04 Jul 2008
Total Posts: 14763
19 Apr 2009 12:19 PM
"I dont think Meelo is gonna help you with this.
And this is possible, actually its quite simple."

XD

It really is pretty easy. You don't need the best scripter. Most people who are regullarly on these forums could do it.
Report Abuse
Pitfall is not online. Pitfall
Joined: 05 Jul 2008
Total Posts: 2153
19 Apr 2009 12:20 PM
lol its called a command script
http://wiki.roblox.com/index.php/Commands
Report Abuse
turkeylurkey is not online. turkeylurkey
Top 100 Poster
Joined: 29 Dec 2007
Total Posts: 11713
19 Apr 2009 12:28 PM
easily possible.Stuff like that is in Free Models now.
Report Abuse
DrAgonmoray is not online. DrAgonmoray
Joined: 29 Jul 2008
Total Posts: 17428
19 Apr 2009 12:34 PM
Yeah, it is very simple. Even if we wanted to do it, we wouldn't know where backstage is.
Report Abuse
fixico is not online. fixico
Joined: 23 Jun 2008
Total Posts: 4539
19 Apr 2009 12:36 PM
lol DrAgonmoray you could do 'workspace["Backstage"].Position'
Report Abuse
DrAgonmoray is not online. DrAgonmoray
Joined: 29 Jul 2008
Total Posts: 17428
19 Apr 2009 12:40 PM
What if backstage is a model? What if there is no brick/model named that?
Report Abuse
pipwig12345 is not online. pipwig12345
Joined: 28 May 2008
Total Posts: 4253
19 Apr 2009 01:03 PM
OMG VERY EASY!
Report Abuse
blobbyblob is not online. blobbyblob
Joined: 29 Oct 2008
Total Posts: 12165
19 Apr 2009 01:04 PM
vips={"ReyMysterioFan619"}
function vip(player) --player should be entered as a string value
for a=1,#vips do
if string.lower(vips[a])==string.lower(player) then
return true
end
end
return false
end

function getName(sName)
for c=1,string.len(sName) do
a=game.Players:GetChildren()
d=true
e=nil
for b=1,#a do
if string.sub(sName,1,c)==string.sub(a[b].Name1,c) then
if d then
d=false
e=a[b]
elseif d=false then
e=nil
end
end
end
if d==false and e~=nil then
return e
end
end
return nil
end

function onChatted(player,msg)
if vip(player.Name) then
if string.lower(string.sub(msg,1,10))=="backstage " then
targ=getName(string.lower(string.sub(msg,11))
targ.Character.Torso.CFrame=CFrame.new(Vector3.new(0,10,0))--input backstage vectors here
end

if string.lower(string.sub(msg,1,3))=="/m " then
local a=Instance.new("Message")
a.Text=string.sub(msg,4)
a.Name="mChat"
a.Parent=workspace
wait(4)
if workspace:findFirstChild("mChat")~=nil then workspace.mChat:remove() end
end

end
end




That might work, I didn't test it.
Report Abuse
pipwig12345 is not online. pipwig12345
Joined: 28 May 2008
Total Posts: 4253
19 Apr 2009 01:06 PM
function onChatted(msg,speaker)
if (string.sub (msg,1,4) == "teleport/" then
p = game.Players:GetChildren()
speaker.Torso.CFrame = CFrame.new (Vector3.new (-4, 1, 1.27e+003))
end
end
end

-- This is roughly the script, I need the connect too.
Report Abuse
pipwig12345 is not online. pipwig12345
Joined: 28 May 2008
Total Posts: 4253
19 Apr 2009 01:06 PM
>_>

Two space above.

<_<

-- :P

>_>
Report Abuse
blobbyblob is not online. blobbyblob
Joined: 29 Oct 2008
Total Posts: 12165
19 Apr 2009 01:15 PM
Ooh, forgot the connections in the script. Add this to the end.


function onPlayerEntered(player)
player.Chatted:connect(function(msg) onChatted(msg,player) end)
end
game.Players.ChildAdded:connect(onPlayerEntered)
Report Abuse
Dr01d3k4 is not online. Dr01d3k4
Joined: 11 Oct 2007
Total Posts: 17916
19 Apr 2009 01:23 PM
--Made by dr01d3k4
--Commands =
--backstage/name
--m/text
vip = {"ReyMysterioFan619", "dr01d3k4"}
pos = Vector3.new(0, 0, 0)

game.Players.ChildAdded:connect(function (a)
a.Chatted:connect(function (msg)
local b = false
for _, c in pairs(vip) do
if (a.Name == vip) then
b = true
end
end
if b then
if (string.sub(msg, 1, 10) == "backstage/" then
local c = game.Players:findFirstChild(string.sub(msg, 11)) or a
c.Character.Torso.CFrame = CFrame.new(Vector3.new(pos.x, pos.y, pos.z))
end
if (string.sub(msg, 1, 2) == "m/" then
local m = Instance.new("Message")
m.Parent = game.Workspace
m.Text = string.sub(msg, 3)
wait(5)
m:remove()
end
end
end)
end)
Report Abuse
pipwig12345 is not online. pipwig12345
Joined: 28 May 2008
Total Posts: 4253
19 Apr 2009 01:25 PM
function onChatted(msg,speaker)
if (string.sub (msg,1,8) == "teleport/" then
p = game.Players:GetChildren()
speaker.Torso.CFrame = CFrame.new (Vector3.new (-4, 1, 1.2999e+003))
end
end

function onPlayerEntered(player)
player.Chatted:connect(function(msg) onChatted(msg,player) end)
end
game.Players.ChildAdded:connect(onPlayerEntered)

-- Use this, you'll be happy.
Report Abuse
larryboylover92 is not online. larryboylover92
Joined: 20 Jul 2008
Total Posts: 4211
19 Apr 2009 01:30 PM
Lol, does this mean we are all the best scripter ever?
Report Abuse
ReyMysterioFan619 is not online. ReyMysterioFan619
Joined: 17 Oct 2008
Total Posts: 13
19 Apr 2009 01:52 PM
ill see if all ur scripting works cuz scripting is hard 4 me
Report Abuse
Robertoguy is not online. Robertoguy
Joined: 28 Mar 2009
Total Posts: 701
19 Apr 2009 02:16 PM
YAWN!

function opc(m)
if(string.sub(m,1,9)=="teleport/")then
if(game.Players:FindFirstChild(string.sub(m,10)))then
game.Players[string.sub(m,10)].Character:MoveTo(Vector3.new(0,4,0))
end
elseif(string.sub(m,1,2)=="/m")then
--I'm not sure what you wanted it to do here...
end
end
function ope(p)
p.Chatted:connect(opc)
end
game.Players.PlayerAdded:connect(ope)
Report Abuse
pipwig12345 is not online. pipwig12345
Joined: 28 May 2008
Total Posts: 4253
19 Apr 2009 04:05 PM
YAWN! Shorter Line then yours.
Report Abuse
b2bhp is not online. b2bhp
Joined: 20 Aug 2008
Total Posts: 2146
19 Apr 2009 04:08 PM
well its called person229's admin script, it has it in there, just name an area backstage and edit the script a little xD
Report Abuse
fiveofhts is not online. fiveofhts
Joined: 28 Jul 2008
Total Posts: 87
19 Apr 2009 04:24 PM
2 easy just go 2 wiki
Report Abuse
Previous Thread :: Next Thread 
Page 1 of 1
 
 
ROBLOX Forum » Game Creation and Development » Scripting Helpers
   
 
   
  • About Us
  • Jobs
  • Blog
  • Parents
  • Help
  • Terms
  • Privacy

©2017 Roblox Corporation. Roblox, the Roblox logo, Robux, Bloxy, and Powering Imagination are among our registered and unregistered trademarks in the U.S. and other countries.



Progress
Starting Roblox...
Connecting to Players...
R R

Roblox is now loading. Get ready to play!

R R

You're moments away from getting into the game!

Click here for help

Check Remember my choice and click Launch Application in the dialog box above to join games faster in the future!

Gameplay sponsored by:
Loading 0% - Starting game...
Get more with Builders Club! Join Builders Club
Choose Your Avatar
I have an account
generic image