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

I am trying to follow the top down action tutorial on the roblox wiki but it isnt working?

Asked by 6 years ago

Ok, so I'm trying to learn how to code by following tutorials on the roblox wiki but I am running into some problems. here is the link to the page http://wiki.roblox.com/index.php?title=Top_Down_Action/Dialog

when I run my game I get this error 12:17:36.529 - DialogGui is not a valid member of ScreenGui

here is my code

local animationSpeedShow = .5
local animationSpeedHide = .5
local positionShow = UDim2.new(0.1, 0, 0, 0)
local positionHide = UDim2.new(0.1, 0, -0.2, 0)

local player = game.Players.LocalPlayer
local playerGui = game.StarterGui.DialogGui
local dialogFrame = playerGui.DialogGui.DialogFrame
local showDialog = game.ReplicatedStorage.ShowDialog

playerGui:SetTopbarTransparency(0)

local function onShowDialog(thumbnail, text, duration)
    local thumbnailPicture = dialogFrame:FindFirstChild(thumbnail)
    thumbnailPicture.Visible = true
    dialogFrame.TextLabel.Text = text
    dialogFrame:TweenPosition(positionShow, Enum.EasingDirection.Out, Enum.EasingStyle.Quint, animationSpeedShow)
    wait(duration)  
    dialogFrame:TweenPosition(positionHide, Enum.EasingDirection.Out, Enum.EasingStyle.Quint, animationSpeedHide)
    wait(animationSpeedHide)
    thumbnailPicture.Visible = false
end

showDialog.OnClientEvent:connect(onShowDialog)
0
you have to create the gui abnotaddable 920 — 6y
0
you have to create the gui abnotaddable 920 — 6y
0
ok 246810_Herobrine -5 — 6y

1 answer

Log in to vote
0
Answered by 6 years ago

its cuz the wiki is outdated but it may change

0
ok 246810_Herobrine -5 — 6y
Ad

Answer this question