|
| 29 Jul 2011 02:22 AM |
There is no error in the OutPut.
So heres how it goes: StarterPack > theName > Script
Script:function onOpen(player) x = Instance.new("ScreenGUI") x.Name = "theName" x.Parent = player.Parent.ParentPlayerGUI y = Instance.new("TextButton") y.Parent = player.Parent.Parent.PlayerGUI.theName y.Active = true y.AutoButtonColor = false y.Backgroundcolor3 = 163;162;165 y.BorderColor3 = 27;43;53 y.Draggle = false y.FontSize = 18 y.Size = UDiM2.new(0, 500, 0, 500) y.Text = "I am testing this" y.TextColor3 = 27;43;53 y.Visible = true player.Parent.theTool:remove() end
|
|
|
| Report Abuse |
|
|
| |
|
| |
|
| |
|
WishNite
|
  |
| Joined: 11 Feb 2009 |
| Total Posts: 15828 |
|
|
| 29 Jul 2011 02:59 AM |
You sure you got all the capitalization correct?
y.Backgroundcolor3 = 163;162;165
should be:
y.BackgrounColor3 = 163;162;165 and y.Size = UDiM2.new(0, 500, 0, 500)
should be:
y.Size = UDim2.new(0, 500, 0, 500) |
|
|
| Report Abuse |
|
|
| |
|
| |
|
xvgigakid
|
  |
| Joined: 22 Jun 2008 |
| Total Posts: 4407 |
|
|
| 29 Jul 2011 02:29 PM |
'Heeellpppp'
You do realize none of the scripters forum is gonna help you after you trolled there. |
|
|
| Report Abuse |
|
|
|
| 29 Jul 2011 02:30 PM |
| >:O That was Scripters not Scripting Helpers, and this is HopperBin, I dunno HopperBin things. |
|
|
| Report Abuse |
|
|
|
| 29 Jul 2011 02:30 PM |
| Lua is case sensitive. Every property and name and variable must be capatilized consitently. |
|
|
| Report Abuse |
|
|
|
| 29 Jul 2011 02:30 PM |
@Green did u not read my post its not camelcased noob |
|
|
| Report Abuse |
|
|
xvgigakid
|
  |
| Joined: 22 Jun 2008 |
| Total Posts: 4407 |
|
|
| 29 Jul 2011 02:31 PM |
Oh by the way I see your probem and its easy to fix,
Ill give you a clue
Hue Sat Lum
What do all 3 of these have in commen, Other than being 3 letter words.? |
|
|
| Report Abuse |
|
|
| |
|
Azvex
|
  |
| Joined: 24 Mar 2011 |
| Total Posts: 1214 |
|
|
| 29 Jul 2011 02:35 PM |
Script:function onOpen(player) x = Instance.new("ScreenGUI") x.Name = "theName" x.Parent = player.Parent.ParentPlayerGUI y = Instance.new("TextButton") y.Parent = player.Parent.Parent.PlayerGUI.theName y.Active = true y.AutoButtonColor = false y.Backgroundcolor3 = 163;162;165 y.BorderColor3 = 27;43;53 y.Draggle = false y.FontSize = 18 y.Size = UDiM2.new(0, 500, 0, 500) y.Text = "I am testing this" y.TextColor3 = Color3.new(27;43;53) y.Visible = true player.Parent.theTool:remove() end --Tis fixed? |
|
|
| Report Abuse |
|
|
| |
|
|
| 29 Jul 2011 02:37 PM |
it doesnt work and still no error |
|
|
| Report Abuse |
|
|
|
| 29 Jul 2011 02:38 PM |
You Don't Have A Connection Line
Problem Solved. |
|
|
| Report Abuse |
|
|
|
| 29 Jul 2011 02:39 PM |
what connection is there supposed to be
problem not solved |
|
|
| Report Abuse |
|
|
|
| 29 Jul 2011 02:39 PM |
For RGB values you must use Color3 to set them.
Color3 is like Vector3, but each part has a maximum value of 1 and mimimum of 0, and what you put there acts as a percentage of 255. so y.BackGroungColor3 = 163;162;165 would be y.BackGroundColor3 = Color3.new(0.63921, 0.63529, 0.64705) |
|
|
| Report Abuse |
|
|
|
| 29 Jul 2011 02:41 PM |
@Green still doesnt work and still no error o_o |
|
|
| Report Abuse |
|
|
|
| 29 Jul 2011 02:41 PM |
It's not my script, I don't know what you want?
Selected? Deselected? Button1Down? |
|
|
| Report Abuse |
|
|
| |
|
|
| 29 Jul 2011 02:44 PM |
WOW! What don't you understand?!
It. Will. Not. Work. Without. A. Connection. Line.
If. You. Do. Not. Have. A. Connection. Line. The. Script. Will. Not. Start. And. Therefore. Will. Not. Display. An. Error.
Problem solved. If you still don't understand, I suggest learning basic scripting, because you need to know how to use connection lines if you want to script anything. |
|
|
| Report Abuse |
|
|
|
| 29 Jul 2011 02:44 PM |
Spore. You are being extremly hostile and dis respectful to people just trying to help you. I know EXACTLY why you don't have any output, and others have noticed too- but you are rude about ti when they tried to bring it up instead of asking further questions to clarify the problem.
You don't have a connection line. |
|
|
| Report Abuse |
|
|
|
| 29 Jul 2011 02:45 PM |
Then say something like
script.Parent.Selected:connect(onWhatEverTheFunctionIsCalled) |
|
|
| Report Abuse |
|
|