A Roblox Community
Would you like to react to this message? Create an account in a few clicks or log in to continue.

A Roblox Community

A community of Robloxians who want to learn to script and build on Roblox Studio.
 
HomeLatest imagesRegisterLog in
If you're a experienced coder make some tutorials! It would really help the site grow.
Make sure you read the rules(Which can be found by clicking here)
If you're a beginner at coding, try some tutorials.
We have many Moderators/Admins watching this site. Contact them with Questions.
Let us know what your favorite sport is. By clicking here to vote (Click here)
This site is becoming inactive. Lets make it active.
Log in
Username:
Password:
Log in automatically: 
:: I forgot my password
Top posters
blueymaddog
Make commands for ABAPIALUCommands Vote_lcapMake commands for ABAPIALUCommands Voting_barMake commands for ABAPIALUCommands Vote_rcap 
naknak
Make commands for ABAPIALUCommands Vote_lcapMake commands for ABAPIALUCommands Voting_barMake commands for ABAPIALUCommands Vote_rcap 
Supernapalm
Make commands for ABAPIALUCommands Vote_lcapMake commands for ABAPIALUCommands Voting_barMake commands for ABAPIALUCommands Vote_rcap 
m27frogy
Make commands for ABAPIALUCommands Vote_lcapMake commands for ABAPIALUCommands Voting_barMake commands for ABAPIALUCommands Vote_rcap 
slayer9365
Make commands for ABAPIALUCommands Vote_lcapMake commands for ABAPIALUCommands Voting_barMake commands for ABAPIALUCommands Vote_rcap 
myrco919
Make commands for ABAPIALUCommands Vote_lcapMake commands for ABAPIALUCommands Voting_barMake commands for ABAPIALUCommands Vote_rcap 
branefreez
Make commands for ABAPIALUCommands Vote_lcapMake commands for ABAPIALUCommands Voting_barMake commands for ABAPIALUCommands Vote_rcap 
ninga95
Make commands for ABAPIALUCommands Vote_lcapMake commands for ABAPIALUCommands Voting_barMake commands for ABAPIALUCommands Vote_rcap 
CloneTrooper787
Make commands for ABAPIALUCommands Vote_lcapMake commands for ABAPIALUCommands Voting_barMake commands for ABAPIALUCommands Vote_rcap 
raboy117
Make commands for ABAPIALUCommands Vote_lcapMake commands for ABAPIALUCommands Voting_barMake commands for ABAPIALUCommands Vote_rcap 
Top posting users this month
No user
Latest topics
» Where to go from here.
Make commands for ABAPIALUCommands EmptySeptember 14th 2020, 1:20 pm by MrNicNac

» Send me an Email
Make commands for ABAPIALUCommands EmptySeptember 14th 2020, 1:16 pm by MrNicNac

» [v1.6.0.0] Lua Script Obfuscator [No Bytecode]
Make commands for ABAPIALUCommands EmptyJuly 6th 2015, 7:38 pm by m27frogy

» New Site Possibly
Make commands for ABAPIALUCommands EmptyJuly 6th 2015, 4:16 pm by m27frogy

» Ambassador!
Make commands for ABAPIALUCommands EmptyApril 15th 2015, 11:40 pm by naknak

» Boop - Tag
Make commands for ABAPIALUCommands EmptyApril 13th 2015, 9:46 pm by naknak

» Vip Class Script
Make commands for ABAPIALUCommands EmptyApril 13th 2015, 4:54 pm by naknak

» Who's active?!
Make commands for ABAPIALUCommands EmptyApril 13th 2015, 4:52 pm by naknak

» Genesis Point
Make commands for ABAPIALUCommands EmptyJuly 17th 2014, 7:04 pm by branefreez

» Reward System
Make commands for ABAPIALUCommands EmptyJuly 17th 2014, 5:41 am by m27frogy

» Script Request
Make commands for ABAPIALUCommands EmptyJuly 10th 2014, 11:43 am by naknak

» local scripts?
Make commands for ABAPIALUCommands EmptyJuly 10th 2014, 11:39 am by naknak

» Project: Reconstruction [Died]
Make commands for ABAPIALUCommands EmptyJuly 10th 2014, 11:36 am by naknak

» Hi. I am new here
Make commands for ABAPIALUCommands EmptyApril 26th 2014, 4:01 pm by altshiftkey

» What's your favorite sport?
Make commands for ABAPIALUCommands EmptyJanuary 1st 2014, 2:13 pm by m27frogy

» FlashLight Script
Make commands for ABAPIALUCommands EmptyJanuary 1st 2014, 2:11 pm by m27frogy

» Gun Making! [READ DESC]
Make commands for ABAPIALUCommands EmptyJanuary 1st 2014, 2:10 pm by m27frogy

» Hi, I am new here!
Make commands for ABAPIALUCommands EmptyNovember 26th 2013, 3:33 pm by Keanu73

» Improve Coding
Make commands for ABAPIALUCommands EmptyOctober 26th 2013, 1:12 pm by pook03

» Simple Button
Make commands for ABAPIALUCommands EmptySeptember 1st 2013, 6:19 pm by branefreez


 

 Make commands for ABAPIALUCommands

Go down 
AuthorMessage
Guest
Guest
avatar



Make commands for ABAPIALUCommands Empty
PostSubject: Make commands for ABAPIALUCommands   Make commands for ABAPIALUCommands EmptyJune 9th 2011, 3:25 pm

Title.

Is all it has to be is a function, taking an argument "LPly", and "LPly" must be localised for the first line. The localisation is because the function can and will be threaded and ran more than once at one moment in time, meaning it NEEDS the variables you use to all be localised. All of them.

LPly is a character.

It MUST be break-proof. Like my example double-checks for a Torso after waiting.

Here's a quick list of commands so you don't make one I've already made:
Meteor, Fire, Explode, Kill, Freeze, Unfreeze

Here's an example:

Code:
      
["Fire"] = function(LPly)
local LPly = LPly
if LPly:findFirstChild("Torso") then
local Fire = Instance.new("Fire")
Fire.Parent = LPly.Torso
wait(3)
if LPly:findFirstChild("Torso") then
LPly.Torso.Parent = nil
end
end
end
Back to top Go down
blueymaddog
Administrator
Administrator
blueymaddog


Posts : 1081
Join date : 2010-12-09
Age : 25

Make commands for ABAPIALUCommands Empty
PostSubject: Re: Make commands for ABAPIALUCommands   Make commands for ABAPIALUCommands EmptyJune 11th 2011, 9:09 am

you should make LPly a table so you can have multiple players affected, that's how I implemented my admin commands.
Back to top Go down
Guest
Guest
avatar



Make commands for ABAPIALUCommands Empty
PostSubject: Re: Make commands for ABAPIALUCommands   Make commands for ABAPIALUCommands EmptyJune 12th 2011, 11:40 am

It does. I just call the function multiple times.

If you wrote

"!a kill trappingnoobsblueymaddog"
it'd process into

"kill(trappingnoobs.Character) kill(blueymaddog.Character)"

or whatever. That's why it needs to be localised, since it runs it multiple times without a delay.
Back to top Go down
blueymaddog
Administrator
Administrator
blueymaddog


Posts : 1081
Join date : 2010-12-09
Age : 25

Make commands for ABAPIALUCommands Empty
PostSubject: Re: Make commands for ABAPIALUCommands   Make commands for ABAPIALUCommands EmptyFebruary 8th 2012, 4:39 am

why don't you use coroutines?

PS: LPly is localized in the parameters. XP
Back to top Go down
Sponsored content





Make commands for ABAPIALUCommands Empty
PostSubject: Re: Make commands for ABAPIALUCommands   Make commands for ABAPIALUCommands Empty

Back to top Go down
 
Make commands for ABAPIALUCommands
Back to top 
Page 1 of 1
 Similar topics
-
» Admin commands
» Admin Commands
» admin commands NEED HELP
» Admin commands list
» how to make a Reset GUI

Permissions in this forum:You cannot reply to topics in this forum
A Roblox Community :: Roblox General :: Projects-
Jump to: