dipf1

Dino Daycare GUI (ROBLOX)

May 19th, 2018
742
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.26 KB | None | 0 0
  1. -- Objects
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local Frame = Instance.new("Frame")
  5. local TextLabel = Instance.new("TextLabel")
  6. local TextButton = Instance.new("TextButton")
  7. local TextButton_2 = Instance.new("TextButton")
  8. local TextButton_3 = Instance.new("TextButton")
  9.  
  10. -- Properties
  11.  
  12. ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui
  13.  
  14. Frame.Parent = ScreenGui
  15. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  16. Frame.Position = UDim2.new(0, 0, 0, 251)
  17. Frame.Size = UDim2.new(0, 234, 0, 194)
  18.  
  19. TextLabel.Parent = Frame
  20. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  21. TextLabel.Size = UDim2.new(0, 234, 0, 50)
  22. TextLabel.Font = Enum.Font.SourceSans
  23. TextLabel.FontSize = Enum.FontSize.Size28
  24. TextLabel.Text = "Dino Daycare Gui"
  25. TextLabel.TextColor3 = Color3.new(0, 0.666667, 0)
  26. TextLabel.TextSize = 25
  27.  
  28. TextButton.Parent = Frame
  29. TextButton.BackgroundColor3 = Color3.new(0.666667, 1, 1)
  30. TextButton.Position = UDim2.new(0, 0, 0, 68)
  31. TextButton.Size = UDim2.new(0, 100, 0, 50)
  32. TextButton.Font = Enum.Font.SourceSans
  33. TextButton.FontSize = Enum.FontSize.Size24
  34. TextButton.Text = "Morph"
  35. TextButton.TextSize = 20
  36.  
  37. TextButton.MouseButton1Down:connect(function()
  38. game.ReplicatedStorage.ToddlerMorph:FireServer()
  39. end)
  40.  
  41. TextButton_2.Parent = Frame
  42. TextButton_2.BackgroundColor3 = Color3.new(0.666667, 1, 1)
  43. TextButton_2.Position = UDim2.new(0, 117, 0, 68)
  44. TextButton_2.Size = UDim2.new(0, 100, 0, 50)
  45. TextButton_2.Font = Enum.Font.SourceSans
  46. TextButton_2.FontSize = Enum.FontSize.Size24
  47. TextButton_2.Text = "Audio Steal"
  48. TextButton_2.TextSize = 20
  49.  
  50. TextButton_2.MouseButton1Down:connect(function()
  51. print 'Audio Stealer by Kalr#5560 and Lua#9904 has loaded in.'
  52. local Players = game:GetService("Players")
  53. Players.LocalPlayer.Chatted:Connect(function(Msg)
  54. if Msg:sub(1,#"/e sit"):lower() == "/e sit" then
  55. local Sounds = ""
  56. for i,v in pairs(Players:GetPlayers()) do
  57. if v.Character:FindFirstChildOfClass("Tool") then
  58. local Tool = v.Character:FindFirstChildOfClass("Tool")
  59. if Tool:FindFirstChild("Handle") then
  60. if Tool.Handle:FindFirstChildOfClass("Sound") then
  61. local Sound = Tool.Handle:FindFirstChildOfClass("Sound")
  62. local Filtered = Sound.SoundId
  63. Filtered = Filtered:gsub("rbxassetid://","")
  64. Filtered = Filtered:gsub("http://www.roblox.com/asset/?id=","")
  65. Sounds = Sounds..Filtered.." | "..v.Name.."\n"
  66. print("Sound: "..Filtered.." | Player: "..v.Name)
  67. end
  68. end
  69. end
  70. end
  71. pcall(function()
  72. Synapse:CopyString(Sounds)
  73. end)
  74. end
  75. end)
  76. end)
  77.  
  78. TextButton_3.Parent = Frame
  79. TextButton_3.BackgroundColor3 = Color3.new(0.666667, 1, 1)
  80. TextButton_3.Position = UDim2.new(0, 67, 0, 128)
  81. TextButton_3.Size = UDim2.new(0, 100, 0, 50)
  82. TextButton_3.Font = Enum.Font.SourceSans
  83. TextButton_3.FontSize = Enum.FontSize.Size24
  84. TextButton_3.Text = "Play Audio"
  85. TextButton_3.TextSize = 20
  86.  
  87. TextButton_3.MouseButton1Down:connect(function()
  88. local Player = game:GetService("Players").LocalPlayer
  89. local BoomboxGearThree = Player.Character:FindFirstChildOfClass("Tool")
  90. local Sound = BoomboxGearThree:FindFirstChildWhichIsA("Sound", true)
  91. local Remote = BoomboxGearThree:FindFirstChildWhichIsA("RemoteEvent", true)
  92.  
  93. local Hash = "d54a4adb0149fc67538a77d2631d9fea";
  94. Remote:FireServer("PlaySong", tostring("rbxassetid://rbxassetid://rbxassetid://0&hash=" .. Hash))
  95. end)
  96. end)
Advertisement
Add Comment
Please, Sign In to add comment