Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Why doesnt anything pop up on the screen, am i doing something wrong ?

Asked by 9 years ago

Here is my code. it is inside a local script and i cant figure out whats going on. Output has no errors so what do i do

player = game.Players.LocalPlayer

player.CharacterAdded:connect(function()
    local intro = Instance.new("ScreenGui")
    local introframe = Instance.new("Frame")
    local introimage = Instance.new("ImageLabel")
    intro.Parent = game.StarterGui
    introframe.Parent = intro
    introimage.Parent = introframe
    introframe.Visible = true
    introimage.Visible = true

end)
0
Change game.StarterGui to player.PlayerGui. ISellCows 2 — 9y
0
nothing still doesnt pop up onscreen koolkid8099 705 — 9y
0
nvm koolkid8099 705 — 9y

Answer this question