Advertisement
CodingSquid

Present Wrapping Sim

Dec 9th, 2018
561
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.21 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local main = Instance.new("Frame")
  3. local back = Instance.new("Frame")
  4. local farmoff = Instance.new("TextButton")
  5. local farmon = Instance.new("TextButton")
  6. local presentoff = Instance.new("TextButton")
  7. local selloff = Instance.new("TextButton")
  8. local presenton = Instance.new("TextButton")
  9. local sellon = Instance.new("TextButton")
  10. local exit = Instance.new("TextButton")
  11. local title = Instance.new("TextLabel")
  12. --Properties:
  13. ScreenGui.Parent = game.CoreGui
  14.  
  15. main.Name = "main"
  16. main.Parent = ScreenGui
  17. main.BackgroundColor3 = Color3.new(0.333333, 0.333333, 1)
  18. main.BorderSizePixel = 0
  19. main.Position = UDim2.new(0.768115938, 0, 0.310940504, 0)
  20. main.Size = UDim2.new(0, 234, 0, 16)
  21. main.Active = true
  22. main.Draggable = true
  23.  
  24. back.Name = "back"
  25. back.Parent = main
  26. back.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  27. back.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  28. back.BorderSizePixel = 0
  29. back.Position = UDim2.new(-0.00176212704, 0, 1, 0)
  30. back.Size = UDim2.new(0, 234, 0, 209)
  31.  
  32. farmoff.Name = "farmoff"
  33. farmoff.Parent = main
  34. farmoff.BackgroundColor3 = Color3.new(0.333333, 0.333333, 1)
  35. farmoff.Position = UDim2.new(0.0680256709, 0, 1.4375, 0)
  36. farmoff.Size = UDim2.new(0, 200, 0, 50)
  37. farmoff.Font = Enum.Font.SourceSansBold
  38. farmoff.Text = "Farm Presents: OFF"
  39. farmoff.TextColor3 = Color3.new(1, 1, 1)
  40. farmoff.TextSize = 14
  41. farmoff.MouseButton1Down:connect(function()
  42. farmoff.Visible = false
  43. farmon.Visible = true
  44. _G.on = false
  45. while _G.on do
  46. wait()
  47. local remote = Game["Players"].LocalPlayer["Backpack"]["PresentWrapper"]["Remotes"]["AddPresent"]
  48. local args = {}
  49. remote:FireServer(unpack(args))
  50. end
  51. end)
  52.  
  53. farmon.Name = "farmon"
  54. farmon.Parent = main
  55. farmon.BackgroundColor3 = Color3.new(0.333333, 0.333333, 1)
  56. farmon.Position = UDim2.new(0.0685046017, 0, 1.4375, 0)
  57. farmon.Size = UDim2.new(0, 200, 0, 50)
  58. farmon.Visible = false
  59. farmon.Font = Enum.Font.SourceSansBold
  60. farmon.Text = "Farm Presents: ON"
  61. farmon.TextColor3 = Color3.new(1, 1, 1)
  62. farmon.TextSize = 14
  63. farmon.MouseButton1Down:connect(function()
  64. farmon.Visible = false
  65. farmoff.Visible = true
  66. _G.on = true
  67. while _G.on do
  68. wait()
  69. local remote = Game["Players"].LocalPlayer["Backpack"]["PresentWrapper"]["Remotes"]["AddPresent"]
  70. local args = {}
  71. remote:FireServer(unpack(args))
  72. end
  73. end)
  74.  
  75. presentoff.Name = "presentoff"
  76. presentoff.Parent = main
  77. presentoff.BackgroundColor3 = Color3.new(0.333333, 0.333333, 1)
  78. presentoff.Position = UDim2.new(0.0680256709, 0, 5.1875, 0)
  79. presentoff.Size = UDim2.new(0, 200, 0, 50)
  80. presentoff.Font = Enum.Font.SourceSansBold
  81. presentoff.Text = "Collect Presents: OFF"
  82. presentoff.TextColor3 = Color3.new(1, 1, 1)
  83. presentoff.TextSize = 14
  84. presentoff.MouseButton1Down:connect(function()
  85. presentoff.Visible = false
  86. presenton.Visible = true
  87. _G.on = false
  88. while _G.on do
  89. wait()
  90. game:GetService("ReplicatedStorage").Events.ImageNotification:FireServer("Presents Script Loaded // Made by Jacob", "rbxgameasset://Images/FixedPresentIcon")
  91.  
  92. game:GetService('RunService').RenderStepped:connect(function()
  93. game:GetService("Players").LocalPlayer.Character.PresentWrapper.Remotes.AddPresent:FireServer()
  94. end)
  95. end
  96. end)
  97.  
  98. selloff.Name = "selloff"
  99. selloff.Parent = main
  100. selloff.BackgroundColor3 = Color3.new(0.333333, 0.333333, 1)
  101. selloff.Position = UDim2.new(0.0680256709, 0, 8.875, 0)
  102. selloff.Size = UDim2.new(0, 200, 0, 50)
  103. selloff.Font = Enum.Font.SourceSansBold
  104. selloff.Text = "Auto Sell: OFF"
  105. selloff.TextColor3 = Color3.new(1, 1, 1)
  106. selloff.TextSize = 14
  107. selloff.MouseButton1Down:connect(function()
  108. selloff.Visible = false
  109. sellon.Visible = true
  110. _G.on = false
  111. while _G.on do
  112. wait()
  113. local remote = Game["Players"].LocalPlayer["Backpack"]["PresentWrapper"]["Remotes"]["ClearPresents"]
  114. local args = {}
  115. remote:FireServer(unpack(args))
  116. end
  117. end)
  118.  
  119. presenton.Name = "presenton"
  120. presenton.Parent = main
  121. presenton.BackgroundColor3 = Color3.new(0.333333, 0.333333, 1)
  122. presenton.Position = UDim2.new(0.0642310977, 0, 5.1875, 0)
  123. presenton.Size = UDim2.new(0, 200, 0, 50)
  124. presenton.Visible = false
  125. presenton.Font = Enum.Font.SourceSansBold
  126. presenton.Text = "Collect Presents: ON"
  127. presenton.TextColor3 = Color3.new(1, 1, 1)
  128. presenton.TextSize = 14
  129. presenton.MouseButton1Down:connect(function()
  130. presenton.Visible = false
  131. presentoff.Visible = true
  132. _G.on = true
  133. while _G.on do
  134. wait()
  135. game:GetService("ReplicatedStorage").Events.ImageNotification:FireServer("Presents Script Loaded // Made by Jacob", "rbxgameasset://Images/FixedPresentIcon")
  136.  
  137. game:GetService('RunService').RenderStepped:connect(function()
  138. game:GetService("Players").LocalPlayer.Character.PresentWrapper.Remotes.AddPresent:FireServer()
  139. end)
  140. end
  141. end)
  142.  
  143. sellon.Name = "sellon"
  144. sellon.Parent = main
  145. sellon.BackgroundColor3 = Color3.new(0.333333, 0.333333, 1)
  146. sellon.Position = UDim2.new(0.0685046017, 0, 8.875, 0)
  147. sellon.Size = UDim2.new(0, 200, 0, 50)
  148. sellon.Visible = false
  149. sellon.Font = Enum.Font.SourceSansBold
  150. sellon.Text = "Auto Sell: ON"
  151. sellon.TextColor3 = Color3.new(1, 1, 1)
  152. sellon.TextSize = 14
  153. sellon.MouseButton1Down:connect(function()
  154. selloff.Visible = true
  155. sellon.Visible = false
  156. _G.on = true
  157. while _G.on do
  158. wait()
  159. local remote = Game["Players"].LocalPlayer["Backpack"]["PresentWrapper"]["Remotes"]["ClearPresents"]
  160. local args = {}
  161. remote:FireServer(unpack(args))
  162. end
  163. end)
  164.  
  165. exit.Name = "exit"
  166. exit.Parent = main
  167. exit.BackgroundColor3 = Color3.new(0.333333, 0.333333, 1)
  168. exit.BorderSizePixel = 0
  169. exit.Position = UDim2.new(0.888117731, 0, 0, 0)
  170. exit.Size = UDim2.new(0, 26, 0, 16)
  171. exit.Font = Enum.Font.SourceSansBold
  172. exit.Text = "X"
  173. exit.TextColor3 = Color3.new(0.666667, 0, 0)
  174. exit.TextScaled = true
  175. exit.TextSize = 14
  176. exit.TextWrapped = true
  177. exit.MouseButton1Down:connect(function()
  178. main.Visible = false
  179. end)
  180.  
  181. title.Name = "title"
  182. title.Parent = main
  183. title.BackgroundColor3 = Color3.new(0.278431, 0.278431, 0.835294)
  184. title.BackgroundTransparency = 1
  185. title.BorderSizePixel = 0
  186. title.Position = UDim2.new(0.200854719, 0, 0, 0)
  187. title.Size = UDim2.new(0, 140, 0, 16)
  188. title.Font = Enum.Font.SourceSans
  189. title.Text = "🎁 Present Wrapping Simulator!"
  190. title.TextColor3 = Color3.new(0, 0, 0)
  191. title.TextSize = 14
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement