YANIS_EXPLOITS

Eating Simulator Script

Oct 5th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.74 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local Frame = Instance.new("Frame")
  3. local EatingSimulatorGUI = Instance.new("TextLabel")
  4. local Frame_2 = Instance.new("Frame")
  5. local GrowFatness = Instance.new("TextButton")
  6. local AutoRebirth = Instance.new("TextButton")
  7. local SafePlace = Instance.new("TextButton")
  8.  
  9. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  10.  
  11. Frame.Parent = ScreenGui
  12. Frame.Active = true
  13. Frame.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  14. Frame.BorderColor3 = Color3.new(1, 0, 0.0156863)
  15. Frame.Position = UDim2.new(0.413562536, 0, 0.356466889, 0)
  16. Frame.Selectable = true
  17. Frame.Size = UDim2.new(0, 165, 0, 227)
  18.  
  19. EatingSimulatorGUI.Name = "Eating Simulator GUI"
  20. EatingSimulatorGUI.Parent = Frame
  21. EatingSimulatorGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  22. EatingSimulatorGUI.BackgroundTransparency = 1
  23. EatingSimulatorGUI.Position = UDim2.new(-0.00461924076, 0, -0.000361293554, 0)
  24. EatingSimulatorGUI.Size = UDim2.new(0, 165, 0, 26)
  25. EatingSimulatorGUI.Font = Enum.Font.Cartoon
  26. EatingSimulatorGUI.Text = "Eating Simulator GUI"
  27. EatingSimulatorGUI.TextColor3 = Color3.new(0, 0, 0)
  28. EatingSimulatorGUI.TextSize = 16
  29.  
  30. Frame_2.Parent = Frame
  31. Frame_2.BackgroundColor3 = Color3.new(1, 0, 0.0156863)
  32. Frame_2.BorderSizePixel = 0
  33. Frame_2.Position = UDim2.new(-0.00200000009, 0, 0.114176072, 0)
  34. Frame_2.Size = UDim2.new(0, 165, 0, 2)
  35.  
  36. GrowFatness.Name = "Grow Fatness"
  37. GrowFatness.Parent = Frame
  38. GrowFatness.BackgroundColor3 = Color3.new(1, 1, 1)
  39. GrowFatness.Position = UDim2.new(0.121212125, 0, 0.224669605, 0)
  40. GrowFatness.Size = UDim2.new(0, 124, 0, 31)
  41. GrowFatness.Style = Enum.ButtonStyle.RobloxButtonDefault
  42. GrowFatness.Font = Enum.Font.Fantasy
  43. GrowFatness.Text = "Grow Fatness"
  44. GrowFatness.TextColor3 = Color3.new(1, 1, 1)
  45. GrowFatness.TextSize = 17
  46.  
  47. AutoRebirth.Name = "Auto Rebirth"
  48. AutoRebirth.Parent = Frame
  49. AutoRebirth.BackgroundColor3 = Color3.new(1, 1, 1)
  50. AutoRebirth.Position = UDim2.new(0.115151517, 0, 0.462555051, 0)
  51. AutoRebirth.Size = UDim2.new(0, 124, 0, 31)
  52. AutoRebirth.Style = Enum.ButtonStyle.RobloxButtonDefault
  53. AutoRebirth.Font = Enum.Font.Fantasy
  54. AutoRebirth.Text = "Auto Rebirth"
  55. AutoRebirth.TextColor3 = Color3.new(1, 1, 1)
  56. AutoRebirth.TextSize = 17
  57.  
  58. SafePlace.Name = "Safe Place"
  59. SafePlace.Parent = Frame
  60. SafePlace.BackgroundColor3 = Color3.new(1, 1, 1)
  61. SafePlace.Position = UDim2.new(0.115151517, 0, 0.713656366, 0)
  62. SafePlace.Size = UDim2.new(0, 124, 0, 31)
  63. SafePlace.Style = Enum.ButtonStyle.RobloxButtonDefault
  64. SafePlace.Font = Enum.Font.Fantasy
  65. SafePlace.Text = "Safe Place"
  66. SafePlace.TextColor3 = Color3.new(1, 1, 1)
  67. SafePlace.TextSize = 17
  68.  
  69. function SCRIPT_OWIF78_FAKESCRIPT()
  70. local script = Instance.new('Script')
  71. script.Parent = EatingSimulatorGUI
  72. script.Parent.Parent.Draggable = true
  73.  
  74. repeat
  75. for hue = 0, 1, .01 do
  76. script.Parent.TextColor3 = Color3.fromHSV(hue, 1, 1)
  77. wait(.1)
  78. end
  79. for hue = 1, 0 -.01 do
  80. script.Parent.TextColor3 = Color3.fromHSV(hue, 1, 1)
  81. wait(.1)
  82. end
  83. until nil
  84.  
  85. end
  86. coroutine.resume(coroutine.create(SCRIPT_OWIF78_FAKESCRIPT))
  87. function SCRIPT_RNYP78_FAKESCRIPT()
  88. local script = Instance.new('Script')
  89. script.Parent = GrowFatness
  90. script.Parent.MouseButton1Down:Connect(function()
  91. while wait() do
  92. local Remote = game.ReplicatedStorage.RE['StrengthGain']
  93.  
  94. local Arguments = {
  95.  
  96. }
  97.  
  98. Remote:FireServer(unpack(Arguments))
  99. end
  100. end)
  101.  
  102. end
  103. coroutine.resume(coroutine.create(SCRIPT_RNYP78_FAKESCRIPT))
  104. function SCRIPT_RYIX65_FAKESCRIPT()
  105. local script = Instance.new('Script')
  106. script.Parent = AutoRebirth
  107. script.Parent.MouseButton1Down:Connect(function()
  108. while wait() do
  109. local Remote = game.ReplicatedStorage.RE['Rebirth']
  110.  
  111. local Arguments = {
  112.  
  113. }
  114.  
  115. Remote:FireServer(unpack(Arguments))
  116. end
  117. end)
  118.  
  119. end
  120. coroutine.resume(coroutine.create(SCRIPT_RYIX65_FAKESCRIPT))
  121. function SCRIPT_XQJX67_FAKESCRIPT()
  122. local script = Instance.new('Script')
  123. script.Parent = SafePlace
  124. script.Parent.MouseButton1Down:Connect(function()
  125. local tpback = Instance.new("Part",workspace)
  126. tpback.Size = Vector3.new(1000,500,1000)
  127. tpback.CanCollide = false
  128. tpback.Transparency = 1
  129. tpback.Position = Vector3.new(-55,400,100)
  130. tpback.Anchored = true
  131. local part = Instance.new("Part",workspace)
  132. part.Size = Vector3.new(1000,10,1000)
  133. part.Position = Vector3.new(-55,1610,100)
  134. part.Transparency = 0.5
  135. part.Anchored = true
  136. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = part.CFrame * CFrame.new(0,10,0)
  137. tpback.Touched:connect(function()
  138. wait()
  139. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = part.CFrame * CFrame.new(0,10,0)
  140. end)
  141. end)
  142.  
  143. end
  144. coroutine.resume(coroutine.create(SCRIPT_XQJX67_FAKESCRIPT))
Add Comment
Please, Sign In to add comment