Advertisement
Scriptorz5

slaying sim ghost egg

Jul 17th, 2019
345
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local TextButton = Instance.new("TextButton")
  7. local TextButton_2 = Instance.new("TextButton")
  8. --Properties:
  9. ScreenGui.Parent = game.CoreGui
  10. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  11.  
  12. Frame.Parent = ScreenGui
  13. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  14. Frame.Position = UDim2.new(0.408830732, 0, 0.603194118, 0)
  15. Frame.Size = UDim2.new(0, 238, 0, 60)
  16.  
  17. TextButton.Parent = Frame
  18. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  19. TextButton.Position = UDim2.new(0.0462184884, 0, 0.216666669, 0)
  20. TextButton.Size = UDim2.new(0, 200, 0, 34)
  21. TextButton.Font = Enum.Font.SourceSans
  22. TextButton.Text = "open 3 ghost pets"
  23. TextButton.TextColor3 = Color3.new(0, 0, 0)
  24. TextButton.TextSize = 14
  25.  
  26. TextButton_2.Parent = Frame
  27. TextButton_2.BackgroundColor3 = Color3.new(1, 1, 1)
  28. TextButton_2.Position = UDim2.new(0.915966392, 0, 0, 0)
  29. TextButton_2.Size = UDim2.new(0, 20, 0, 20)
  30. TextButton_2.Font = Enum.Font.SourceSans
  31. TextButton_2.Text = "x"
  32. TextButton_2.TextColor3 = Color3.new(0, 0, 0)
  33. TextButton_2.TextSize = 14
  34. -- Scripts:
  35. function SCRIPT_DUZP76_FAKESCRIPT() -- TextButton.LocalScript
  36. local script = Instance.new('LocalScript')
  37. script.Parent = TextButton
  38. script.Parent.MouseButton1Click:Connect(function()
  39. local A_1 = "Ghostly Egg"
  40. local A_2 = 3
  41. local Event = game:GetService("ReplicatedStorage").Events.PurchaseEgg
  42. Event:InvokeServer(A_1, A_2)
  43. end)
  44.  
  45. end
  46. coroutine.resume(coroutine.create(SCRIPT_DUZP76_FAKESCRIPT))
  47. function SCRIPT_CJJU87_FAKESCRIPT() -- TextButton_2.LocalScript
  48. local script = Instance.new('LocalScript')
  49. script.Parent = TextButton_2
  50. script.Parent.MouseButton1Click:Connect(function()
  51. script.Parent.Parent.Parent:Destroy()
  52. end)
  53.  
  54. end
  55. coroutine.resume(coroutine.create(SCRIPT_CJJU87_FAKESCRIPT))
  56. function SCRIPT_LGGC79_FAKESCRIPT() -- Frame.LocalScript
  57. local script = Instance.new('LocalScript')
  58. script.Parent = Frame
  59. script.Parent.Active = true
  60. script.Parent.Draggable = true
  61.  
  62. end
  63. coroutine.resume(coroutine.create(SCRIPT_LGGC79_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement