zac4545
|
  |
| Joined: 19 Aug 2009 |
| Total Posts: 2324 |
|
|
| 30 Dec 2012 12:40 AM |
But ROBLOX Studio 2.0 isn't actually too bad.
Atleast for making GUIs, I haven't really tried using it for anything else though.
Your thoughts? |
|
|
| Report Abuse |
|
|
LordHyx
|
  |
| Joined: 23 Nov 2012 |
| Total Posts: 5733 |
|
|
| 30 Dec 2012 12:51 AM |
Well, My friend who's been scripting for some time said that it's rather convenient. He said that if scripts don't work it has a lovely red line under it.
I'd say that's useful. |
|
|
| Report Abuse |
|
|
|
| 30 Dec 2012 12:57 AM |
| Whenever I install 2.0, the original studio is the one that gets installed. |
|
|
| Report Abuse |
|
|
zac4545
|
  |
| Joined: 19 Aug 2009 |
| Total Posts: 2324 |
|
|
| 30 Dec 2012 02:54 AM |
King, studio 2.0 should already be installed with it, are you sure?
And yes, it's also good for that (scripting) too. |
|
|
| Report Abuse |
|
|
SN0X
|
  |
| Joined: 24 Oct 2011 |
| Total Posts: 7277 |
|
|
| 30 Dec 2012 03:47 AM |
Of course it isn't too bad.
It's far better than the stable 1.0 version.
It's just....unstable. |
|
|
| Report Abuse |
|
|
|
| 30 Dec 2012 08:19 AM |
In my personal opinion ROBLOX studio 2.0 is only good for scripting.
Using it for anything else such as building is a pain since it just bugs out like a bug. |
|
|
| Report Abuse |
|
|
|
| 30 Dec 2012 11:38 AM |
| I wish studio came with a built in CFrame thing. I'm annoyed having to do it with a command bar. |
|
|
| Report Abuse |
|
|
zac4545
|
  |
| Joined: 19 Aug 2009 |
| Total Posts: 2324 |
|
|
| 30 Dec 2012 11:44 AM |
@king
You should try CmdUtl, very nice tool. |
|
|
| Report Abuse |
|
|
129K
|
  |
| Joined: 23 Aug 2011 |
| Total Posts: 19010 |
|
|
| 30 Dec 2012 11:55 AM |
| 2.0 is very crashy for me, and I keep forgetting to save. So I use the original ROBLOX studio. |
|
|
| Report Abuse |
|
|
Tenal
|
  |
| Joined: 15 May 2011 |
| Total Posts: 18684 |
|
|
| 30 Dec 2012 11:57 AM |
| 2.0 seems like ROBLOX's attempt to redeem us. |
|
|
| Report Abuse |
|
|
|
| 30 Dec 2012 04:24 PM |
| I'm not using it until they fix :Destroy() being permanent even after pressing the Reset button. |
|
|
| Report Abuse |
|
|
UnAdmin
|
  |
| Joined: 10 Jul 2012 |
| Total Posts: 4706 |
|
|
| 30 Dec 2012 05:46 PM |
I made this Plugin a while back
local StudioPlugin = PluginManager():CreatePlugin() local StudioToolbar = StudioPlugin:CreateToolbar("Plugins") local StudioPluginButton = StudioToolbar:CreateButton("","Click to make a GUI.","applicationadd.png")
StudioPluginButton.Click:connect(function() local GUI = Instance.new("ScreenGui") local frm = Instance.new("Frame") local tb = Instance.new("TextButton") GUI.Parent = game.StarterGui wait(0.1) frm.Parent = GUI frm.Name = "MainFrame" frm.Size = UDim2.new(0,250,0,30) frm.Position = UDim2.new(0,500,0,20) frm.Style = 3 wait(0.1) tb.Parent = frm tb.Font = 2 tb.FontSize = 3 tb.Style = 2 tb.Size = UDim2.new(0, 230, 0, 20) tb.Text = "You may edit your text through the properties." tb.Position = UDim2.new (0, 2,0, -3) tb.TextColor3 = Color3.new(1, 1, 1) tb.Name = "MainButton" end)
~I love to trade! Send me trade requests!~ |
|
|
| Report Abuse |
|
|