Playbutton localscript:
script.Parent.MouseButton1Click:connect(function() game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16 script.Parent.Parent.Parent:Destroy() end)
Workspace Script:
game.Players.PlayerAdded:connect(function(player) repeat wait() until player.PlayerGui:FindFirstChild("StartMenu") repeat wait() until player.Character:findFirstChild("Humanoid") player.PlayerGui.StartMenu.Frame.Visible = true player.Character.Humanoid.WalkSpeed = 0 end)