TalkToMe

HALLOWEEN SIMULATOR GUI 2

Oct 7th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.58 KB | None | 0 0
  1. - Cradit Mr.UFOmc XD
  2.  
  3. -- Farewell Infortality.
  4. -- Version: 2.82
  5. -- Instances:
  6. local Tutorial = Instance.new("ScreenGui")
  7. local OpenFrame = Instance.new("Frame")
  8. local Open = Instance.new("TextButton")
  9. local Main = Instance.new("Frame")
  10. local TextLabel = Instance.new("TextLabel")
  11. local TextLabel_2 = Instance.new("TextLabel")
  12. local speed = Instance.new("TextButton")
  13. local walk = Instance.new("TextButton")
  14. local Close = Instance.new("TextButton")
  15. --Properties:
  16. Tutorial.Name = "Tutorial"
  17. Tutorial.Parent = game.CoreGui
  18. Tutorial.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  19.  
  20. OpenFrame.Name = "OpenFrame"
  21. OpenFrame.Parent = Tutorial
  22. OpenFrame.BackgroundColor3 = Color3.new(0.133333, 1, 0)
  23. OpenFrame.Position = UDim2.new(0, 0, 0.0283911675, 0)
  24. OpenFrame.Size = UDim2.new(0, 149, 0, 42)
  25.  
  26. Open.Name = "Open"
  27. Open.Parent = OpenFrame
  28. Open.BackgroundColor3 = Color3.new(0.0352941, 0.580392, 0)
  29. Open.Position = UDim2.new(0.0386852287, 0, 0.156902492, 0)
  30. Open.Size = UDim2.new(0, 136, 0, 27)
  31. Open.Font = Enum.Font.SciFi
  32. Open.Text = "Open"
  33. Open.TextColor3 = Color3.new(0, 0, 0)
  34. Open.TextSize = 14
  35. Open.MouseButton1Down:connect(function()
  36. Main.Visible = true
  37. OpenFrame.Visible = false
  38. end)
  39.  
  40. Main.Name = "Main"
  41. Main.Parent = Tutorial
  42. Main.Active = true
  43. Main.BackgroundColor3 = Color3.new(0.282353, 0.282353, 0.282353)
  44. Main.Position = UDim2.new(0.347008556, 0, 0.290220797, 0)
  45. Main.Size = UDim2.new(0, 382, 0, 214)
  46. Main.Visible = false
  47. Main.Draggable = true
  48.  
  49. TextLabel.Parent = Main
  50. TextLabel.BackgroundColor3 = Color3.new(0.784314, 0.0980392, 0.772549)
  51. TextLabel.Position = UDim2.new(-0.0497382209, 0, -0.0420560837, 0)
  52. TextLabel.Size = UDim2.new(0, 420, 0, 23)
  53. TextLabel.Font = Enum.Font.Cartoon
  54. TextLabel.Text = "Hack Halloween Simulator"
  55. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  56. TextLabel.TextSize = 14
  57.  
  58. TextLabel_2.Parent = Main
  59. TextLabel_2.BackgroundColor3 = Color3.new(0.784314, 0.0980392, 0.772549)
  60. TextLabel_2.Position = UDim2.new(-0.0497382209, 0, 0.957943916, 0)
  61. TextLabel_2.Size = UDim2.new(0, 420, 0, 23)
  62. TextLabel_2.Font = Enum.Font.Cartoon
  63. TextLabel_2.Text = "Cradit : UFOmc / made in thailand"
  64. TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
  65. TextLabel_2.TextSize = 14
  66.  
  67. speed.Name = "speed"
  68. speed.Parent = Main
  69. speed.BackgroundColor3 = Color3.new(0.937255, 0.117647, 0.92549)
  70. speed.BackgroundTransparency = 0.44999998807907
  71. speed.Position = UDim2.new(0.0910502672, 0, 0.263303757, 0)
  72. speed.Size = UDim2.new(0, 128, 0, 100)
  73. speed.Font = Enum.Font.Cartoon
  74. speed.Text = "Speed!!"
  75. speed.TextColor3 = Color3.new(0, 0, 0)
  76. speed.TextSize = 22
  77. speed.MouseButton1Down:connect(function()
  78. while true do
  79. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
  80. wait()
  81. end
  82. end)
  83.  
  84. walk.Name = "walk"
  85. walk.Parent = Main
  86. walk.BackgroundColor3 = Color3.new(0.937255, 0.117647, 0.92549)
  87. walk.BackgroundTransparency = 0.44999998807907
  88. walk.Position = UDim2.new(0.599418283, 0, 0.263303757, 0)
  89. walk.Size = UDim2.new(0, 128, 0, 100)
  90. walk.Font = Enum.Font.Cartoon
  91. walk.Text = "Walk (Fixs!!)"
  92. walk.TextColor3 = Color3.new(0, 0, 0)
  93. walk.TextSize = 22
  94. walk.MouseButton1Down:connect(function()
  95. while true do
  96. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 50
  97. wait()
  98. end
  99. end)
  100.  
  101. Close.Name = "Close"
  102. Close.Parent = Main
  103. Close.BackgroundColor3 = Color3.new(1, 0, 0)
  104. Close.Position = UDim2.new(0.981675386, 0, -0.0420560762, 0)
  105. Close.Size = UDim2.new(0, 26, 0, 23)
  106. Close.Font = Enum.Font.Cartoon
  107. Close.Text = "X"
  108. Close.TextColor3 = Color3.new(0, 0, 0)
  109. Close.TextSize = 14
  110. Close.MouseButton1Down:connect(function()
  111. OpenFrame.Visible = true
  112. Main.Visible = false
  113. end)
  114. -- Scripts:
Add Comment
Please, Sign In to add comment