-- Sound gui CS Instance.new("Sound", game.Workspace) local sound = game.Workspace.Sound local player = game.Players.LocalPlayer.Name local ppl = game.Players.LocalPlayer.PlayerGui Instance.new("ScreenGui", ppl) ppl.ScreenGui.Name = "SoundGui" Instance.new("TextBox", ppl.SoundGui) local tb = game.Players.LocalPlayer.PlayerGui.SoundGui.TextBox tb.Text = "Only with rbxassetid://" tb.Size = UDim2.new(0.3, 1, 0.1) tb.TextScaled = true tb.Draggable = true Instance.new("TextButton", ppl.SoundGui) local b = game.Players.LocalPlayer.PlayerGui.SoundGui.TextButton b.TextScaled = true b.Draggable = true b.Text = "Execute" b.Size = UDim2.new(0.3, 1, 0.1) b.MouseButton1Click:Connect(function() local soundid = game.Players.LocalPlayer.PlayerGui.SoundGui.TextBox.Text sound.SoundId = soundid sound.Playing = true sound.Looped = true sound.Volume = 1.3 end)