Advertisement
SynapseHax

Infinite AutoCorrect Gui

Oct 9th, 2019
3,226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.48 KB | None | 0 0
  1. --Script made by StillChill#8562
  2.  
  3. --Everything for the Gui/Variables **DO NOT CHANGE**
  4.  
  5. ScreenGui = Instance.new("ScreenGui",game.CoreGui)
  6. Frame = Instance.new("Frame",ScreenGui)
  7. Coffee = Instance.new("TextButton",ScreenGui)
  8. Supply = Instance.new("TextButton",ScreenGui)
  9. Donut = Instance.new("TextButton",ScreenGui)
  10. Water = Instance.new("TextButton",ScreenGui)
  11. GuiIntro = Instance.new("TextLabel",ScreenGui)
  12. Contact = Instance.new("TextLabel",ScreenGui)
  13.  
  14. ----Properties
  15.  
  16. --Frame
  17. Frame.Position = UDim2.new(0.036, 0, 0.596, 0)
  18. Frame.Size = UDim2.new(0, 318, 0, 284)
  19. --Coffee Button
  20. Coffee.Position = UDim2.new(0.046, 0, 0.694, 0)
  21. Coffee.Size = UDim2.new(0, 133, 0, 47)
  22. Coffee.Text = ("Coffee")
  23. Coffee.Font = ("Cartoon")
  24. Coffee.TextScaled = true
  25. --Supply Button
  26. Supply.Position = UDim2.new(0.046, 0, 0.779, 0)
  27. Supply.Size = UDim2.new(0, 133, 0, 50)
  28. Supply.Text = ("Supply")
  29. Supply.Font = ("Cartoon")
  30. Supply.TextScaled = true
  31. --Donut Button
  32. Donut.Position = UDim2.new(0.139, 0, 0.694, 0)
  33. Donut.Size = UDim2.new(0, 137, 0, 50)
  34. Donut.Text = ("Donut")
  35. Donut.Font = ("Cartoon")
  36. Donut.TextScaled = true
  37. --Water Button
  38. Water.Position = UDim2.new(0.139, 0, 0.779, 0)
  39. Water.Size = UDim2.new(0, 137, 0, 50)
  40. Water.Text = ("Water")
  41. Water.Font = ("Cartoon")
  42. Water.TextScaled = true
  43. --Gui Intro
  44. GuiIntro.Position = UDim2.new(0.036, 0, 0.596, 0)
  45. GuiIntro.Size = UDim2.new(0, 318, 0, 53)
  46. GuiIntro.Text = ("Infinite AutoComp Challenge GUI")
  47. GuiIntro.Font = ("Gotham")
  48. GuiIntro.BackgroundColor3 = Color3.new(85, 255, 255)
  49. GuiIntro.TextScaled = true
  50. --Contact
  51. Contact.Position = UDim2.new(0.072, 0, 0.859, 0)
  52. Contact.Size = UDim2.new(0, 204, 0, 57)
  53. Contact.Text = ("More Challenges? Contact me on Discord StillChill#8562")
  54. Contact.Font = ("GothamBlack")
  55. Contact.BorderSizePixel = 0
  56. Contact.TextScaled = true
  57.  
  58. ----Funtions **DO NOT CHANGE**
  59.  
  60. --Water Telport
  61. Water.MouseButton1Click:Connect(function()
  62. game.Players.LocalPlayer.character.LowerTorso.CFrame = CFrame.new(25.739, 2.595, 36.416)
  63. end)
  64.  
  65. --Donut Teleport
  66. Donut.MouseButton1Click:Connect(function()
  67. game.Players.LocalPlayer.character.LowerTorso.CFrame = CFrame.new(-5.727, 2.586, -31.898)
  68. end)
  69.  
  70. --Supply Box Teleport
  71. Supply.MouseButton1Click:Connect(function()
  72. game.Players.LocalPlayer.character.LowerTorso.CFrame = CFrame.new(74.491, 1.493, -59.245)
  73. end)
  74.  
  75. --Coffee Teleport
  76. Coffee.MouseButton1Click:Connect(function()
  77. game.Players.LocalPlayer.character.LowerTorso.CFrame = CFrame.new(-11.932, 3.708, -5.97)
  78. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement