Advertisement
Guest User

b

a guest
Jul 28th, 2018
500
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. --Made By Roadine
  2. -- Objects
  3.  
  4. local SodaDrinkingHub = Instance.new("ScreenGui")
  5. local Main = Instance.new("Frame")
  6. local Title = Instance.new("TextLabel")
  7. local Jump = Instance.new("TextButton")
  8. local reffects = Instance.new("TextButton")
  9. local craftitem = Instance.new("TextBox")
  10. local craft = Instance.new("TextButton")
  11. local credits = Instance.new("TextLabel")
  12.  
  13. -- Properties
  14.  
  15. SodaDrinkingHub.Name = "SodaDrinking Hub"
  16. SodaDrinkingHub.Parent = game.Players.LocalPlayer.PlayerGui
  17.  
  18. Main.Name = "Main"
  19. Main.Parent = SodaDrinkingHub
  20. Main.Active = true
  21. Main.Draggable = true
  22. Main.BackgroundColor3 = Color3.new(255, 0, 191)
  23. Main.BackgroundTransparency = 0.10000000149012
  24. Main.BorderSizePixel = 0
  25. Main.ClipsDescendants = true
  26. Main.Position = UDim2.new(0.440909088, 0, 0.289044321, 0)
  27. Main.Selectable = true
  28. Main.Size = UDim2.new(0, 365, 0, 357)
  29.  
  30. Title.Name = "Title"
  31. Title.Parent = Main
  32. Title.BackgroundColor3 = Color3.new(117, 0, 0)
  33. Title.BackgroundTransparency = 0.10000000149012
  34. Title.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  35. Title.BorderSizePixel = 4
  36. Title.Position = UDim2.new(0.164102569, 0, 0.0705394223, 0)
  37. Title.Size = UDim2.new(0, 245, 0, 41)
  38. Title.Font = Enum.Font.ArialBold
  39. Title.Text = "Soda Drinking Simulator Hub by Soda fo"
  40. Title.TextColor3 = Color3.new(1, 1, 1)
  41. Title.TextScaled = true
  42. Title.TextSize = 14
  43. Title.TextWrapped = true
  44.  
  45. Jump.Name = "Jump"
  46. Jump.Parent = Main
  47. Jump.BackgroundColor3 = Color3.new(117, 0, 0)
  48. Jump.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  49. Jump.BorderSizePixel = 4
  50. Jump.Position = UDim2.new(0.164102569, 0, 0.294605821, 0)
  51. Jump.Size = UDim2.new(0, 245, 0.4, 29)
  52. Jump.Font = Enum.Font.ArialBold
  53. Jump.Text = "Auto Fast Drinking"
  54. Jump.TextColor3 = Color3.new(1, 1, 1)
  55. Jump.TextScaled = true
  56. Jump.TextSize = 14
  57. Jump.TextWrapped = true
  58.  
  59. credits.Name = "credits"
  60. credits.Parent = Main
  61. credits.BackgroundColor3 = Color3.new(117, 0, 0)
  62. credits.BackgroundTransparency = 0.10000000149012
  63. credits.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  64. credits.BorderSizePixel = 0
  65. credits.Position = UDim2.new(0.0153846154, 0, 0.905511796, 0)
  66. credits.Size = UDim2.new(0, 353, 0, 35)
  67. credits.Font = Enum.Font.ArialBold
  68. credits.Text = "Made By Soda fo and iiiPipe"
  69. credits.TextColor3 = Color3.new(1, 1, 1)
  70. credits.TextScaled = true
  71. credits.TextSize = 14
  72. credits.TextWrapped = true
  73.  
  74. -- Scripts
  75. Jump.MouseButton1Down:connect(function()
  76. while true do
  77. game["Run Service"].RenderStepped:wait()
  78. game.Players.LocalPlayer.Character.Soda.Drink:FireServer()
  79. game.Players.LocalPlayer.Character.Soda.Drink:FireServer()
  80. game.ReplicatedStorage.RebirthMe:FireServer()
  81. end
  82. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement