01 | while true do |
02 | --point Create |
03 | local Point = Instance.new( "TextButton" ) |
04 | Point.Parent = game.StarterGui.ScreenGui |
05 | Point.Visible = true |
06 | Point.Size = UDim 2. new( 0 , 50 , 0 , 50 ) |
07 | --color |
08 | Point.BackgroundColor 3 = Color 3. new( 255 / 255 , 255 / 255 , 255 / 255 ) |
09 | --Location |
10 | local xPos = math.random( 23 , 1840 ) |
11 | local yPos = math.random( 180 , 950 ) |
12 | Point.AnchorPoint = Vector 2. new(xPos, yPos) |
13 | Point.Position = UDim 2. new( 0 , xPos, 0 , yPos) |
14 | print ( "x : " ,xPos, " y : " ,yPos) |
15 | --delete |
16 | wait( 5 ) |
17 | Point.MouseButton 1 Click:Connect( function () |
18 | Point:Remove() |
19 | end ) |
20 | end |
This is my script there is no error or error code. So what's the problem you might ask. Well the TextButton is generated in the ScreenGui but it is not showing up. I tried to set the code to white as you can see but it won't show up. This is the URL to the picture of the TextBox how it is looking.
https://lh3.googleusercontent.com/-P6fU1D46MqY/XqPJcRWPO3I/AAAAAAAAA34/NF-L479cD3Uh2JBID_DvRJoxN-WkqVJXwCK8BGAsYHg/s0/2020-04-24.png
So like you saw the box is still there and will appear when you click it. But it won't show up. Please help me...
Mabye you can change the Instance.new()
to game:GetService()
I don't actually know. This is just a theory. I hope I helped.
Sincerely,
Ducksneedhelp - Scripting Noob
Hello! I have an answer to your question. I had problem with that too, once. So basically, when you add an object to starter GUI, it doesn't actually update the player's GUI. Here is how to fix it:
01 | local player = game.Players.LocalPlayer -- The player that has this script. |
02 | while true do |
03 | --point Create |
04 | local Point = Instance.new( "TextButton" ) |
05 | Point.Parent = player.PlayerGui -- Changed this to PlayerGui |
06 | Point.Visible = true |
07 | Point.Size = UDim 2. new( 0 , 50 , 0 , 50 ) |
08 | --color |
09 | Point.BackgroundColor 3 = Color 3. new( 255 / 255 , 255 / 255 , 255 / 255 ) |
10 | --Location |
11 | local xPos = math.random( 23 , 1840 ) |
12 | local yPos = math.random( 180 , 950 ) |
13 | Point.AnchorPoint = Vector 2. new(xPos, yPos) |
14 | Point.Position = UDim 2. new( 0 , xPos, 0 , yPos) |
15 | print ( "x : " ,xPos, " y : " ,yPos) |
Your problem was that you added it into the starter GUi, which only shows up when the game starts or the player resets. So, to fix that, use the current player's GUI. Which is player.PlayerGui