Advertisement
booka77

no

Mar 14th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(key)
  2. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  3. if (v:IsA("Accessory")) then
  4. v.Parent = workspace
  5. end
  6. end
  7. end)
  8.  
  9. local ScreenGui = Instance.new("ScreenGui")
  10. local Frame = Instance.new("Frame")
  11. local Frame_2 = Instance.new("Frame")
  12. local TextLabel = Instance.new("TextLabel")
  13. local TextButton = Instance.new("TextButton")
  14. local TextBox = Instance.new("TextBox")
  15.  
  16. -- some more shit
  17.  
  18. ScreenGui.Parent = game.CoreGui
  19.  
  20. Frame.Parent = ScreenGui
  21. Frame.Active = true
  22. Frame.BackgroundColor3 = Color3.new(0.462745, 0.462745, 0.462745)
  23. Frame.BorderSizePixel = 0
  24. Frame.Draggable = true
  25. Frame.Position = UDim2.new(0.663499594, 0, 0.0268948656, 0)
  26. Frame.Size = UDim2.new(0, 358, 0, 242)
  27.  
  28. Frame_2.Parent = Frame
  29. Frame_2.BackgroundColor3 = Color3.new(0.333333, 1, 0.498039)
  30. Frame_2.BorderSizePixel = 0
  31. Frame_2.Size = UDim2.new(0, 358, 0, 25)
  32.  
  33. TextLabel.Parent = Frame_2
  34. TextLabel.BackgroundColor3 = Color3.new(0.290196, 0.87451, 0.427451)
  35. TextLabel.BorderSizePixel = 0
  36. TextLabel.Position = UDim2.new(0, 0, 0.479999989, 0)
  37. TextLabel.Size = UDim2.new(0, 358, 0, 30)
  38. TextLabel.Font = Enum.Font.Highway
  39. TextLabel.Text = "Pizza Hax ~GUI"
  40. TextLabel.TextSize = 20
  41.  
  42. TextButton.Parent = TextLabel
  43. TextButton.BackgroundColor3 = Color3.new(0.333333, 1, 0.498039)
  44. TextButton.BorderSizePixel = 0
  45. TextButton.Position = UDim2.new(0.0614525154, 0, 5.76666689, 0)
  46. TextButton.Size = UDim2.new(0, 316, 0, 50)
  47. TextButton.Font = Enum.Font.SourceSansLight
  48. TextButton.Text = "Spam item"
  49. TextButton.TextSize = 25
  50.  
  51. TextButton.MouseButton1Down:connect(function()
  52. local A_1 = "LoadAvatarAsset"
  53. local A_2 = TextBox.Text
  54. local Event = game:GetService("ReplicatedStorage").Channels.PlayerChannel
  55. Event:FireServer(A_1, A_2)
  56. end)
  57.  
  58. TextBox.Parent = TextButton
  59. TextBox.BackgroundColor3 = Color3.new(0,000000, 1, 0,0000)
  60. TextBox.BorderSizePixel = 0
  61. TextBox.Position = UDim2.new(0.180627942, 0, -2.11999989, 0)
  62. TextBox.Size = UDim2.new(0, 200, 0, 50)
  63. TextBox.Font = Enum.Font.SourceSansLight
  64. TextBox.Text = "Catalog Item ID"
  65. TextBox.TextSize = 30
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement