Advertisement
PokiHero

Untitled

Feb 23rd, 2019
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.75 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ShitGame = Instance.new("ScreenGui")
  5. local Dogshit = Instance.new("Frame")
  6. local Title = Instance.new("TextLabel")
  7. local Egg = Instance.new("TextButton")
  8. local EggName = Instance.new("TextBox")
  9. --Properties:
  10. ShitGame.Name = "ShitGame"
  11. ShitGame.Parent = game.CoreGui
  12. ShitGame.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  13.  
  14. Dogshit.Name = "Dogshit"
  15. Dogshit.Parent = ShitGame
  16. Dogshit.BackgroundColor3 = Color3.new(0.192157, 0.929412, 0.317647)
  17. Dogshit.BorderSizePixel = 0
  18. Dogshit.Position = UDim2.new(0.328000009, 0, 0.313253015, 0)
  19. Dogshit.Size = UDim2.new(0, 233, 0, 228)
  20.  
  21. Title.Name = "Title"
  22. Title.Parent = Dogshit
  23. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  24. Title.BackgroundTransparency = 1
  25. Title.Size = UDim2.new(0, 233, 0, 50)
  26. Title.Font = Enum.Font.Highway
  27. Title.Text = "Auto-Egg Slaying Simulator made by Not a Trap#6258"
  28. Title.TextColor3 = Color3.new(0, 0, 0)
  29. Title.TextScaled = true
  30. Title.TextSize = 14
  31. Title.TextWrapped = true
  32.  
  33. Egg.Name = "Egg"
  34. Egg.Parent = Dogshit
  35. Egg.BackgroundColor3 = Color3.new(0.145098, 0.713726, 0.239216)
  36. Egg.BorderSizePixel = 0
  37. Egg.Position = UDim2.new(0, 0, 0.671052635, 0)
  38. Egg.Size = UDim2.new(0, 233, 0, 75)
  39. Egg.Font = Enum.Font.Highway
  40. Egg.Text = "START"
  41. Egg.TextColor3 = Color3.new(0, 0, 0)
  42. Egg.TextScaled = true
  43. Egg.TextSize = 14
  44. Egg.TextWrapped = true
  45.  
  46. EggName.Name = "EggName"
  47. EggName.Parent = Dogshit
  48. EggName.BackgroundColor3 = Color3.new(0.145098, 0.713726, 0.239216)
  49. EggName.BorderSizePixel = 0
  50. EggName.Position = UDim2.new(0, 0, 0.25, 0)
  51. EggName.Size = UDim2.new(0, 233, 0, 75)
  52. EggName.Font = Enum.Font.Highway
  53. EggName.PlaceholderText = "EGG NAME"
  54. EggName.Text = ""
  55. EggName.TextColor3 = Color3.new(0, 0, 0)
  56. EggName.TextScaled = true
  57. EggName.TextSize = 14
  58. EggName.TextWrapped = true
  59. -- Scripts:
  60. local on = false
  61.  
  62.  
  63. Egg.MouseButton1Click:Connect(function()
  64. if on == false then
  65. on = true
  66. Egg.Text = "STOP"
  67. else
  68. on = false
  69. Egg.Text = "START"
  70. end
  71. repeat
  72. wait()
  73. local Modules = game.ReplicatedStorage.Modules
  74. local EncryptionService = require(Modules.EncryptionService)
  75. local A_1 = (EncryptionService:Encrypt(EggName.Text,"eggPurchase")), EncryptionService:Encrypt("1", "eggAmount")
  76. local A_2 = "762070448fc854c6e8"
  77. local Event = game:GetService("ReplicatedStorage").Events.PurchaseEgg
  78. warn(A_1,A_2)
  79. Event:InvokeServer(A_1, A_2)
  80. for i = 0 , 10 , 1 do
  81. local A_1 =
  82. {
  83. ["Rebirths"] = i,
  84. ["Name"] = "8M Bunny",
  85. ["Equipped"] = false
  86. }
  87. local Event = game:GetService("ReplicatedStorage").Events.RebirthPet
  88. Event:FireServer(A_1)
  89. end
  90.  
  91.  
  92. until on == false
  93. end)
  94.  
  95. Dogshit.Active = true
  96. Dogshit.Draggable = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement