Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Objects
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local TextLabel = Instance.new("TextLabel")
- local TextButton = Instance.new("TextButton")
- local TextButton_2 = Instance.new("TextButton")
- local TextButton_3 = Instance.new("TextButton")
- -- Properties
- ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.new(1, 1, 1)
- Frame.Position = UDim2.new(0, 0, 0, 251)
- Frame.Size = UDim2.new(0, 234, 0, 194)
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
- TextLabel.Size = UDim2.new(0, 234, 0, 50)
- TextLabel.Font = Enum.Font.SourceSans
- TextLabel.FontSize = Enum.FontSize.Size28
- TextLabel.Text = "Dino Daycare Gui"
- TextLabel.TextColor3 = Color3.new(0, 0.666667, 0)
- TextLabel.TextSize = 25
- TextButton.Parent = Frame
- TextButton.BackgroundColor3 = Color3.new(0.666667, 1, 1)
- TextButton.Position = UDim2.new(0, 0, 0, 68)
- TextButton.Size = UDim2.new(0, 100, 0, 50)
- TextButton.Font = Enum.Font.SourceSans
- TextButton.FontSize = Enum.FontSize.Size24
- TextButton.Text = "Morph"
- TextButton.TextSize = 20
- TextButton.MouseButton1Down:connect(function()
- game.ReplicatedStorage.ToddlerMorph:FireServer()
- end)
- TextButton_2.Parent = Frame
- TextButton_2.BackgroundColor3 = Color3.new(0.666667, 1, 1)
- TextButton_2.Position = UDim2.new(0, 117, 0, 68)
- TextButton_2.Size = UDim2.new(0, 100, 0, 50)
- TextButton_2.Font = Enum.Font.SourceSans
- TextButton_2.FontSize = Enum.FontSize.Size24
- TextButton_2.Text = "Audio Steal"
- TextButton_2.TextSize = 20
- TextButton_2.MouseButton1Down:connect(function()
- print 'Audio Stealer by Kalr#5560 and Lua#9904 has loaded in.'
- local Players = game:GetService("Players")
- Players.LocalPlayer.Chatted:Connect(function(Msg)
- if Msg:sub(1,#"/e sit"):lower() == "/e sit" then
- local Sounds = ""
- for i,v in pairs(Players:GetPlayers()) do
- if v.Character:FindFirstChildOfClass("Tool") then
- local Tool = v.Character:FindFirstChildOfClass("Tool")
- if Tool:FindFirstChild("Handle") then
- if Tool.Handle:FindFirstChildOfClass("Sound") then
- local Sound = Tool.Handle:FindFirstChildOfClass("Sound")
- local Filtered = Sound.SoundId
- Filtered = Filtered:gsub("rbxassetid://","")
- Filtered = Filtered:gsub("http://www.roblox.com/asset/?id=","")
- Sounds = Sounds..Filtered.." | "..v.Name.."\n"
- print("Sound: "..Filtered.." | Player: "..v.Name)
- end
- end
- end
- end
- pcall(function()
- Synapse:CopyString(Sounds)
- end)
- end
- end)
- end)
- TextButton_3.Parent = Frame
- TextButton_3.BackgroundColor3 = Color3.new(0.666667, 1, 1)
- TextButton_3.Position = UDim2.new(0, 67, 0, 128)
- TextButton_3.Size = UDim2.new(0, 100, 0, 50)
- TextButton_3.Font = Enum.Font.SourceSans
- TextButton_3.FontSize = Enum.FontSize.Size24
- TextButton_3.Text = "Play Audio"
- TextButton_3.TextSize = 20
- TextButton_3.MouseButton1Down:connect(function()
- local Player = game:GetService("Players").LocalPlayer
- local BoomboxGearThree = Player.Character:FindFirstChildOfClass("Tool")
- local Sound = BoomboxGearThree:FindFirstChildWhichIsA("Sound", true)
- local Remote = BoomboxGearThree:FindFirstChildWhichIsA("RemoteEvent", true)
- local Hash = "d54a4adb0149fc67538a77d2631d9fea";
- Remote:FireServer("PlaySong", tostring("rbxassetid://rbxassetid://rbxassetid://0&hash=" .. Hash))
- end)
- end)
Advertisement
Add Comment
Please, Sign In to add comment