Advertisement
MRobbin99

Hot Sauce Simulator, getAllShit/Gamepasses

Feb 17th, 2019
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.37 KB | None | 0 0
  1. -- still works as of 2/23/2019
  2. -- tp to all coins and gems
  3. -- hot sauce sim https://www.roblox.com/games/2766734236/Update-2-Hot-Sauce-Simulator
  4.  
  5. -- initial variables
  6. plr = game.Players.LocalPlayer
  7. plr.gamepasses.FastRage.Value = 1
  8. -- Objects
  9.  
  10. local ScreenGui = Instance.new("ScreenGui")
  11. local GUI = Instance.new("Frame")
  12. local Title = Instance.new("TextLabel")
  13. local Credits = Instance.new("TextLabel")
  14. local SwordAttack= Instance.new("TextButton")
  15. local SwordAttackNo = Instance.new("TextButton")
  16.  
  17. -- Properties
  18.  
  19. modifier = false
  20.  
  21. ScreenGui.Parent = game.CoreGui
  22.  
  23. GUI.Name = "GUI"
  24. GUI.Parent = ScreenGui
  25. GUI.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  26. GUI.BorderColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  27. GUI.BorderSizePixel = 0
  28. GUI.Position = UDim2.new(0, 0, 0.730039531, 0)
  29. GUI.Size = UDim2.new(0, 316, 0, 339)
  30. GUI.Style = Enum.FrameStyle.RobloxRound
  31.  
  32. Title.Name = "Title"
  33. Title.Parent = GUI
  34. Title.Active = true
  35. Title.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  36. Title.Position = UDim2.new(0.114720426, 0, 0.00523944944, 0)
  37. Title.Size = UDim2.new(0, 200, 0, 50)
  38. Title.Font = Enum.Font.SourceSans
  39. Title.Text = "Hot Sauce Sim GUI"
  40. Title.TextColor3 = Color3.new(1, 1, 1)
  41. Title.TextSize = 14
  42.  
  43. SwordAttack.Name = "SwordAttack"
  44. SwordAttack.Parent = GUI
  45. SwordAttack.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  46. SwordAttack.Position = UDim2.new(0.114720426, 0, 0.233038351, 0)
  47. SwordAttack.Size = UDim2.new(0, 200, 0, 50)
  48. SwordAttack.Font = Enum.Font.SourceSans
  49. SwordAttack.Text = "Auto Farm Coins/Sell"
  50. SwordAttack.TextColor3 = Color3.new(1, 1, 1)
  51. SwordAttack.TextSize = 14
  52. SwordAttack.MouseButton1Down:connect(function()
  53.  
  54. if modifier == true then
  55. modifier = false
  56. SwordAttack.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  57. else
  58. modifier = true
  59. SwordAttack.BackgroundColor3 = Color3.new(40, 127, 71)
  60. play()
  61. end
  62. end)
  63.  
  64. SwordAttackNo.Name = "SwordAttackNo"
  65. SwordAttackNo.Parent = GUI
  66. SwordAttackNo.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  67. SwordAttackNo.Position = UDim2.new(0.114720426, 0, 0.551622391, 0)
  68. SwordAttackNo.Size = UDim2.new(0, 200, 0, 50)
  69. SwordAttackNo.Font = Enum.Font.SourceSans
  70. SwordAttackNo.Text = "Teleport back to spawn"
  71. SwordAttackNo.TextColor3 = Color3.new(1, 1, 1)
  72. SwordAttackNo.TextSize = 14
  73. SwordAttackNo.MouseButton1Down:connect(function()
  74. hum = game.Players.LocalPlayer.Character.HumanoidRootPart
  75. hum.CFrame = CFrame.new(-69, 4, 18)
  76. end)
  77.  
  78. Credits.Name = "Credits"
  79. Credits.Parent = GUI
  80. Credits.BackgroundColor3 = Color3.new(1, 1, 1)
  81. Credits.Position = UDim2.new(0.00316455704, 0, 0.943952799, 0)
  82. Credits.Size = UDim2.new(0, 109, 0, 18)
  83. Credits.Font = Enum.Font.SourceSans
  84. Credits.Text = "Credits to MRobbin99"
  85. Credits.TextSize = 14
  86.  
  87.  
  88. -- functions
  89.  
  90. -- Kill
  91. function play()
  92. while modifier do
  93. -- teleports you to all the stuff you can pickup on the map and gives u gamepass
  94. -- https://www.roblox.com/games/2766734236/Hot-Sauce-Simulator
  95. plr = game.Players.LocalPlayer
  96. hum = plr.Character.HumanoidRootPart
  97. local sellpoint = CFrame.new(55,2,87)
  98. local modelList = game.Workspace.Coins:GetChildren()
  99. plr.gamepasses.FastRage.Value = 1
  100. for i = 0, 10 do
  101. for i = 1, #modelList do
  102. hum.CFrame = modelList[i].CFrame
  103. hum.CFrame = hum.CFrame + Vector3.new(0,1,0)
  104. wait()
  105. end
  106. hum.CFrame = sellpoint
  107. wait(2.5)
  108. end
  109.  
  110. end
  111. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement