Hi! I've been attempting to make a small PDA pad to be used on the player's wrist, the only problem is... it doesn't work! wooo-
Anyways,
The thing is it looks like my script should work, so what's going on? (I'll attach images to visualize what's happening).
Anything is appreciated. (To Add, its in PlayerGui, and the adornee property is set!)
local TS = game:GetService("TweenService") local Pages = script.Parent:WaitForChild("Screens") Pages.Screen1.Next.MouseButton1Click:Connect(function() --Logo TS:Create(Pages.Screen1["SCP Logo"], TweenInfo.new(3), {Position = UDim2.new(0.5,0,0.3,0), Size = UDim2.new(0.3,0,0.3,0)}):Play() Pages.Screen1["SCP Logo"].Rotate.Disabled = true TS:Create(Pages.Screen1["SCP Logo"], TweenInfo.new(5), {Rotation = 0}):Play() --Text Pages.Screen1.Standby.Fade.Disabled = true TS:Create(Pages.Screen1.Standby, TweenInfo.new(5), {Transparency = 1}):Play() TS:Create(Pages.Screen1.TapAnywhere, TweenInfo.new(5), {Transparency = 1}):Play() --Screen2Text wait(1.5) Pages.Screen2.Welcome.Text = "Welcome, "..player.Name TS:Create(Pages.Screen2.Welcome, TweenInfo.new(3), {TextTransparency = 0}):Play() end)
(images): https://imgur.com/a/Kyn2mqY