Advertisement
OofExploitz1

Sanic [Sunset City Gui]

Aug 2nd, 2018
3,390
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.12 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local yes = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local nice = Instance.new("TextLabel")
  7. local omgyes = Instance.new("TextButton")
  8. local col = Instance.new("TextLabel")
  9. local yes_2 = Instance.new("TextBox")
  10. --Properties:
  11. yes.Name = "yes"
  12. yes.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  13. yes.ResetOnSpawn = false
  14.  
  15. Frame.Parent = yes
  16. Frame.BackgroundColor3 = Color3.new(0.52549, 0.52549, 0.392157)
  17. Frame.Position = UDim2.new(0.285488963, 0, 0.224890828, 0)
  18. Frame.Size = UDim2.new(0, 201, 0, 250)
  19. Frame.Active = true
  20. Frame.Selectable = true
  21. Frame.Draggable = true
  22.  
  23. nice.Name = "nice"
  24. nice.Parent = Frame
  25. nice.BackgroundColor3 = Color3.new(1, 1, 1)
  26. nice.BackgroundTransparency = 1
  27. nice.Size = UDim2.new(0, 200, 0, 50)
  28. nice.Font = Enum.Font.SourceSans
  29. nice.Text = "Sanic [Sunset City Gui]"
  30. nice.TextColor3 = Color3.new(0, 1, 1)
  31. nice.TextScaled = true
  32. nice.TextSize = 14
  33. nice.TextWrapped = true
  34.  
  35. omgyes.Name = "omgyes"
  36. omgyes.Parent = Frame
  37. omgyes.BackgroundColor3 = Color3.new(0, 0.333333, 0)
  38. omgyes.BorderSizePixel = 0
  39. omgyes.Position = UDim2.new(0.164179102, 0, 0.843999982, 0)
  40. omgyes.Size = UDim2.new(0, 135, 0, 25)
  41. omgyes.Font = Enum.Font.SourceSans
  42. omgyes.Text = "Start"
  43. omgyes.TextColor3 = Color3.new(1, 1, 1)
  44. omgyes.TextSize = 30
  45.  
  46. col.Name = "col"
  47. col.Parent = Frame
  48. col.BackgroundColor3 = Color3.new(1, 1, 1)
  49. col.BackgroundTransparency = 1
  50. col.Position = UDim2.new(0.298507452, 0, 0.199999988, 0)
  51. col.Size = UDim2.new(0, 81, 0, 50)
  52. col.Font = Enum.Font.SourceSans
  53. col.Text = "0"
  54. col.TextColor3 = Color3.new(0, 0, 0)
  55. col.TextScaled = true
  56. col.TextSize = 14
  57. col.TextWrapped = true
  58.  
  59. yes_2.Name = "yes"
  60. yes_2.Parent = Frame
  61. yes_2.BackgroundColor3 = Color3.new(1, 1, 1)
  62. yes_2.Position = UDim2.new(0.114427857, 0, 0.400000006, 0)
  63. yes_2.Size = UDim2.new(0, 167, 0, 93)
  64. yes_2.Font = Enum.Font.SourceSans
  65. yes_2.PlaceholderColor3 = Color3.new(0.443137, 0.443137, 0.443137)
  66. yes_2.PlaceholderText = "Instructions: Enter A nuber here (not too high) and it will complete your job that much (work as pizza) [It completes your job every 1 second]"
  67. yes_2.Text = ""
  68. yes_2.TextColor3 = Color3.new(0, 0, 0)
  69. yes_2.TextScaled = true
  70. yes_2.TextSize = 14
  71. yes_2.TextWrapped = true
  72. -- Scripts:
  73. function SCRIPT_LYBI70_FAKESCRIPT() -- omgyes.Script
  74.     getfenv().script = Instance.new('LocalScript', omgyes)
  75.  
  76.     local oomgyees = Instance.new("BoolValue")
  77.     oomgyees.Parent = script.Parent.Parent
  78.     oomgyees.Value = false
  79.     oomgyees.Name = math.random(0,999999)
  80.    
  81.     script.Parent.MouseButton1Click:Connect(function()
  82.         local i = 0
  83.         local b = tonumber(script.Parent.Parent.yes.Text)     --put amount of times you want your job completed here
  84.    
  85.         repeat
  86.             game.ReplicatedStorage.Remotes.Events.CompletedJob:FireServer()
  87.             wait(1)
  88.             i = i + 1
  89.             wait(0.1)
  90.             script.Parent.Parent.col.Text = i
  91.         until i == b
  92.         wait(2)
  93.         script.Parent.Parent.Parent:Destroy()
  94.     end)
  95.  
  96. end
  97. coroutine.resume(coroutine.create(SCRIPT_LYBI70_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement