Quenty
|
  |
| Joined: 03 Sep 2009 |
| Total Posts: 9316 |
|
|
| 12 Apr 2012 07:32 PM |
Post your favorite/most handy plugins (And their function) that you use. Then, we can share!
Here are my favorite.:
- Enable Chat Enables chat in test > solo and test > server. Quite handy.
- CmdUtl V3 Customized Allows for easily building with CFrame
- Sun Click and drag in the sky, and the sun goes there too.
- Add Items Quick add for part / script
- Check for Syntax errors Scans every script in the game, and checks for syntax errors.
|
|
|
| Report Abuse |
|
|
smurf279
|
  |
| Joined: 15 Mar 2010 |
| Total Posts: 6871 |
|
|
| 12 Apr 2012 07:34 PM |
| im too cool for plugins :D |
|
|
| Report Abuse |
|
|
teteyal
|
  |
| Joined: 01 May 2011 |
| Total Posts: 274 |
|
|
| 12 Apr 2012 07:35 PM |
Put a lua script in a plugin folder and copy and paste this: ------
print("Global Variables/functions are executable")
------Kill()------ function _G.Kill(x) if x.className == "Model" then local human = x:GetChildren() for i = 1,#human do if human[i].className == "Humanoid" then human[i].Health = 0 end end elseif x.className == "Player" then local humanx = x.Character:GetChildren() for i = 1,#humanx do if humanx[i].className == "Humanoid" then humanx[i].Health = 0 end end end end
------Index()------ function _G.Index(x) local c = x:GetChildren() print("----------------------------------") print("Index:") for i = 1,#c do print("- "..c[i].Name) end print("----------------------------------") print(#c.." Objects found in game."..x:GetFullName()) end
------Unpack()------ function _G.Unpack(x) for i,c in pairs(x:GetChildren()) do c.Parent = x.Parent end end |
|
|
| Report Abuse |
|
|
|
| 12 Apr 2012 07:53 PM |
I use CmdUtl, my own script that allows chat for every player and Stravant's terrain editing tools.
That's all I need. |
|
|
| Report Abuse |
|
|
|
| 12 Apr 2012 07:56 PM |
btw, you can find Stravant's terrain editing plugin here:
http://wiki.roblox.com/index.php/User:XLEGOx/terrainedit
It's.. 2700 lines long. It's a set of 6 tools : PencilTool, PaintBrush, Eraser, Extrude, Smooth, Grab. It has GUIs, selectionboxes and other stuff. |
|
|
| Report Abuse |
|
|
|
| 12 Apr 2012 09:40 PM |
Quenty can you help me find those plugins you listed other than CmdUtl? Also Julien tyvm for that link and I got that plugin to work. |
|
|
| Report Abuse |
|
|
nate890
|
  |
| Joined: 22 Nov 2008 |
| Total Posts: 21686 |
|
|
| 13 Apr 2012 06:56 AM |
| I always thought that the cmdutl was just code that executed itself when you run it and not a plugin? Anaminus made it before plugs were released, though. |
|
|
| Report Abuse |
|
|
|
| 13 Apr 2012 07:01 AM |
Anaminus himself said it was a plugin.
A script doesn't need to make fancy toolbars to be a plugin. The plugins feature allows plugins to do things such as creating toolbars, but a script doesn't need to use these features to be a plugin.
As long as putting it in the plugins folder works and makes it useful in some way, I'd guess it can be considered as a plugin. |
|
|
| Report Abuse |
|
|
nate890
|
  |
| Joined: 22 Nov 2008 |
| Total Posts: 21686 |
|
| |
|