PTR_KILLER

Untitled

Jun 20th, 2022
2,021
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.12 KB | None | 0 0
  1. game:GetService("StarterGui"):SetCore("SendNotification", {
  2. Title = "Loading";
  3. Text = "...";
  4. Icon = "rbxthumb://type=Asset&id=1683451805&w=150&h=150"})
  5. Duration = 16;
  6.  
  7. wait(3)
  8. local ScreenGui = Instance.new("ScreenGui")
  9. local main = Instance.new("Frame")
  10. local title = Instance.new("TextLabel")
  11. local On = Instance.new("TextButton")
  12. local Off = Instance.new("TextButton")
  13. local close = Instance.new("TextButton")
  14. local openmain = Instance.new("Frame")
  15. local open = Instance.new("TextButton")
  16.  
  17.  
  18. ScreenGui.Parent = game.CoreGui
  19.  
  20. main.Name = "main"
  21. main.Parent = ScreenGui
  22. main.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  23. main.Position = UDim2.new(0.0203577988, 0, 0.641277611, 0)
  24. main.Size = UDim2.new(0, 332, 0, 211)
  25. main.Visible = false
  26. main.Active = true
  27. main.Draggable = true
  28.  
  29. title.Name = "title"
  30. title.Parent = main
  31. title.BackgroundColor3 = Color3.new(0,128,0)
  32. title.Size = UDim2.new(0, 332, 0, 31)
  33. title.Font = Enum.Font.GothamBold
  34. title.Text = "Gui Made by: PTRKILLER "
  35. title.TextColor3 = Color3.new(0, 0, 0)
  36. title.TextSize = 17
  37.  
  38. On.Name = "On"
  39. On.Parent = main
  40. On.BackgroundColor3 = Color3.new(0,128,0)
  41. On.Position = UDim2.new(0.036144577, 0, 0.379146934, 0)
  42. On.Size = UDim2.new(0, 110, 0, 50)
  43. On.Font = Enum.Font.SciFi
  44. On.Text = "On"
  45. On.TextColor3 = Color3.new(1, 1, 1)
  46. On.TextScaled = true
  47. On.TextSize = 10
  48. On.TextWrapped = true
  49. On.MouseButton1Down:connect(function()
  50. while true do
  51. local Animate = game.Players.LocalPlayer.Character.Animate
  52. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616158929"
  53. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616160636"
  54. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616168032"
  55. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616163682"
  56. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616161997"
  57. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616156119"
  58. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616157476"
  59. game.Players.LocalPlayer.Character.Humanoid.Jump = false
  60. wait(1)
  61. end
  62. end)
  63.  
  64. On.MouseButton1Down:connect(function()
  65. game:GetService("StarterGui"):SetCore("SendNotification", {
  66. Title = "Executed";
  67. Text = "👀 (On)";
  68. Icon = "rbxthumb://type=Asset&id=6492020716&w=150&h=150"})
  69. Duration = 16;
  70. end)
  71.  
  72. Off.Name = "Off"
  73. Off.Parent = main
  74. Off.BackgroundColor3 = Color3.new(0,128,0)
  75. Off.Position = UDim2.new(0.614457846, 0, 0.379146934, 0)
  76. Off.Size = UDim2.new(0, 110, 0, 50)
  77. Off.Font = Enum.Font.SciFi
  78. Off.Text = "Off"
  79. Off.TextColor3 = Color3.new(1, 1, 1)
  80. Off.TextScaled = true
  81. Off.TextSize = 14
  82. Off.TextWrapped = true
  83. Off.MouseButton1Down:connect(function()
  84. while true do
  85. local Animate = game.Players.LocalPlayer.Character.Animate
  86. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616158929"
  87. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616160636"
  88. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616168032"
  89. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616163682"
  90. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616161997"
  91. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616156119"
  92. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616157476"
  93. game.Players.LocalPlayer.Character.Humanoid.Jump = false
  94. wait(1)
  95. end
  96. end)
  97.  
  98. Off.MouseButton1Down:connect(function()
  99. game:GetService("StarterGui"):SetCore("SendNotification", {
  100. Title = "Executed";
  101. Text = "👀 (Off)";
  102. Icon = "rbxthumb://type=Asset&id=6492020716&w=150&h=150"})
  103. Duration = 16;
  104. end)
  105.  
  106. close.Name = "close"
  107. close.Parent = main
  108. close.BackgroundColor3 = Color3.fromRGB(30,214,255)
  109. close.Position = UDim2.new(0.879518092, 0, 0, 0)
  110. close.Size = UDim2.new(0, 40, 0, 31)
  111. close.Font = Enum.Font.GothamBlack
  112. close.Text = "Close"
  113. close.TextColor3 = Color3.new(0, 0, 0)
  114. close.TextScaled = true
  115. close.TextSize = 14
  116. close.TextWrapped = true
  117. close.MouseButton1Down:connect(function()
  118. main.Visible = false
  119. openmain.Visible = true
  120. end)
  121.  
  122. openmain.Name = "openmain"
  123. openmain.Parent = ScreenGui
  124. openmain.BackgroundColor3 = Color3.fromRGB(30,214,255)
  125. openmain.Position = UDim2.new(.001, 0, .79, 0)
  126. openmain.Size = UDim2.new(0, 100, 0, 28)
  127. openmain.Active = true
  128. openmain.Draggable = true
  129.  
  130. open.Name = "open"
  131. open.Parent = openmain
  132. open.BackgroundColor3 = Color3.fromRGB(30,214,255)
  133. open.Size = UDim2.new(0, 100, 0, 28)
  134. open.Font = Enum.Font.GothamBold
  135. open.Text = "Animation"
  136. open.TextColor3 = Color3.new(0, 0, 0)
  137. open.TextSize = 18
  138. open.TextWrapped = true
  139. open.MouseButton1Down:connect(function()
  140. openmain.Visible = false
  141. main.Visible = true
  142. end)
  143.  
  144. game:GetService("StarterGui"):SetCore("SendNotification", {
  145. Title = "Animation Loaded.";
  146. Text = "Please Subscribe To PTRKILER ";
  147. Icon = "rbxthumb://type=Asset&id=15533743&w=150&h=150"})
  148. Duration = 16;
  149.  
  150. game:GetService("StarterGui"):SetCore("SendNotification", {
  151. Title = "🔨Bugs";
  152. Text = "(If The Animation Is Not Working Spam The Button)";
  153. Icon = "rbxthumb://type=Asset&id=5839962783&w=150&h=150"})
  154. Duration = 16;
Advertisement
Add Comment
Please, Sign In to add comment