ReddAnims

Hack For Vampire Hunters (Only For JJSploit)

Nov 4th, 2018
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.74 KB | None | 0 0
  1. local VH2Gui = Instance.new("ScreenGui")
  2. local TheBox = Instance.new("Frame")
  3. local ThyButton1 = Instance.new("TextButton")
  4. local ThyButton2 = Instance.new("TextButton")
  5. local ThyButton3 = Instance.new("TextButton")
  6.  
  7.  
  8. VH2Gui.Name = "VH2Gui"
  9. VH2Gui.Parent = game.CoreGui
  10.  
  11. TheBox.Name = "TheBox"
  12. TheBox.Parent = VH2Gui
  13. TheBox.BackgroundColor3 = Color3.new(1, 1, 1)
  14. TheBox.Position = UDim2.new(0, 10, 0, 490)
  15. TheBox.Size = UDim2.new(0, 50, 0, -110)
  16. TheBox.Visible = false
  17. TheBox.Style = Enum.FrameStyle.RobloxRound
  18.  
  19. ThyButton1.Name = "ThyButton1"
  20. ThyButton1.Parent = VH2Gui
  21. ThyButton1.BackgroundColor3 = Color3.new(0, 0, 0)
  22. ThyButton1.BorderColor3 = Color3.new(0, 0, 0)
  23. ThyButton1.Position = UDim2.new(0, 12, 0, 440)
  24. ThyButton1.Size = UDim2.new(0, 47, 0, 48)
  25. ThyButton1.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  26. ThyButton1.Font = Enum.Font.Arial
  27. ThyButton1.FontSize = Enum.FontSize.Size12
  28. ThyButton1.Text = "Open"
  29. ThyButton1.TextColor3 = Color3.new(0, 0, 0)
  30.  
  31. ThyButton2.Name = "ThyButton2"
  32. ThyButton2.Parent = VH2Gui
  33. ThyButton2.BackgroundColor3 = Color3.new(1, 1, 1)
  34. ThyButton2.Position = UDim2.new(0, 16, 0, 380)
  35. ThyButton2.Size = UDim2.new(0, 39, 0, 35)
  36. ThyButton2.Visible = false
  37. ThyButton2.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  38. ThyButton2.Font = Enum.Font.Bodoni
  39. ThyButton2.FontSize = Enum.FontSize.Size14
  40. ThyButton2.Text = "Give\nCreds"
  41. ThyButton2.TextColor3 = Color3.new(0, 0, 0)
  42.  
  43. ThyButton3.Name = "ThyButton3"
  44. ThyButton3.Parent = VH2Gui
  45. ThyButton3.BackgroundColor3 = Color3.new(1, 1, 1)
  46. ThyButton3.Position = UDim2.new(0, 16, 0, 410)
  47. ThyButton3.Size = UDim2.new(0, 39, 0, 35)
  48. ThyButton3.Visible = false
  49. ThyButton3.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  50. ThyButton3.Font = Enum.Font.Bodoni
  51. ThyButton3.FontSize = Enum.FontSize.Size14
  52. ThyButton3.Text = "Give\nExp."
  53. ThyButton3.TextColor3 = Color3.new(0, 0, 0)
  54.  
  55. Open = false
  56.  
  57. game.CoreGui.VH2Gui.ThyButton1.MouseButton1Down:connect(function(open)
  58. if Open == false then
  59. game.CoreGui.VH2Gui.ThyButton1.Text = "Close"
  60. game.CoreGui.VH2Gui.TheBox.Visible = true
  61. game.CoreGui.VH2Gui.ThyButton2.Visible = true
  62. game.CoreGui.VH2Gui.ThyButton3.Visible = true
  63. Open = true
  64. elseif Open == true then
  65. game.CoreGui.VH2Gui.ThyButton1.Text = "Open"
  66. game.CoreGui.VH2Gui.TheBox.Visible = false
  67. game.CoreGui.VH2Gui.ThyButton2.Visible = false
  68. game.CoreGui.VH2Gui.ThyButton3.Visible = false
  69. Open = false
  70. end
  71. end)
  72.  
  73. game.CoreGui.VH2Gui.ThyButton2.MouseButton1Down:connect(function(givecreds)
  74. game.Workspace.Events.GiveCR:FireServer(1000000) --The credit script, incase you just want that.
  75. end)
  76.  
  77. game.CoreGui.VH2Gui.ThyButton3.MouseButton1Down:connect(function(giveexp)
  78. game.Workspace.Events.GivePTS:FireServer(1000000) --The exp script, incase you just came for that.
  79. end)
Add Comment
Please, Sign In to add comment