Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- plr = game.Players.LocalPlayer
- char = workspace:WaitForChild(plr.Name)
- head = char.Head
- neck = char.Torso.Neck
- local masuci = Instance.new("ScreenGui")
- local masuicframe = Instance.new("Frame")
- local ids = Instance.new("TextBox")
- local play = Instance.new("TextButton")
- local music = Instance.new("Sound",char.Torso)
- music.SoundId = "rbxassetid://321034193"
- music.Volume = 3
- masuci.Name = "masuci"
- masuci.Parent = game.Players.LocalPlayer.PlayerGui
- masuicframe.Name = "masuic frame"
- masuicframe.Parent = masuci
- masuicframe.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- masuicframe.Position = UDim2.new(0.0492227972, 0, 0.295681059, 0)
- masuicframe.Size = UDim2.new(0, 328, 0, 266)
- ids.Name = "ids"
- ids.Parent = masuicframe
- ids.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- ids.Position = UDim2.new(0.190386087, 0, 0.210719123, 0)
- ids.Size = UDim2.new(0, 200, 0, 50)
- ids.Font = Enum.Font.SourceSans
- ids.Text = "ID HERE"
- ids.TextColor3 = Color3.new(0, 1, 1)
- ids.TextScaled = true
- ids.TextSize = 14
- ids.TextWrapped = true
- play.Name = "play"
- play.Parent = masuicframe
- play.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- play.BorderSizePixel = 0
- play.Position = UDim2.new(0, 0, 0.488721818, 0)
- play.Size = UDim2.new(0, 168, 0, 50)
- play.Font = Enum.Font.SourceSans
- play.Text = "PLAY IT!"
- play.TextColor3 = Color3.new(0, 1, 0)
- play.TextScaled = true
- play.TextSize = 14
- play.TextWrapped = true
- function PlaySound()
- music.SoundId = "rbxassetid://" .. ids.Text
- music:Play()
- music.Looped = true
- end
- play.MouseButton1Click:connect(PlaySound)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement