Advertisement
Colornapse_Themes

Untitled

Mar 24th, 2019
685
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.66 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local FeKill = Instance.new("ScreenGui")
  5. local Main = Instance.new("Frame")
  6. local Toppings = Instance.new("Frame")
  7. local Button = Instance.new("Frame")
  8. local Main_2 = Instance.new("TextButton")
  9. local Circle = Instance.new("ImageLabel")
  10. local TextLabel = Instance.new("TextLabel")
  11. local TextBox = Instance.new("TextBox")
  12. --Properties:
  13. FeKill.Name = "Fe Kill"
  14. FeKill.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  15. FeKill.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  16.  
  17. Main.Name = "Main"
  18. Main.Parent = FeKill
  19. Main.BackgroundColor3 = Color3.new(0, 0, 0)
  20. Main.BackgroundTransparency = 0.40000000596046
  21. Main.BorderSizePixel = 0
  22. Main.Position = UDim2.new(0.181638718, 0, 0.207616702, 0)
  23. Main.Size = UDim2.new(0, 237, 0, 146)
  24.  
  25. Toppings.Name = "Toppings"
  26. Toppings.Parent = Main
  27. Toppings.BackgroundColor3 = Color3.new(0.666667, 0.333333, 1)
  28. Toppings.BorderSizePixel = 0
  29. Toppings.Position = UDim2.new(-0.0250000004, 0, -0.0270271022, 0)
  30. Toppings.Size = UDim2.new(0, 230, 0, 138)
  31.  
  32. Button.Name = "Button"
  33. Button.Parent = Toppings
  34. Button.BackgroundColor3 = Color3.new(0.666667, 0, 1)
  35. Button.BorderSizePixel = 0
  36. Button.ClipsDescendants = true
  37. Button.Position = UDim2.new(0.06005859, 0, 0.659900606, 0)
  38. Button.Size = UDim2.new(0, 200, 0, 35)
  39.  
  40. Main_2.Name = "Main"
  41. Main_2.Parent = Button
  42. Main_2.BackgroundColor3 = Color3.new(0.666667, 0, 1)
  43. Main_2.BorderSizePixel = 0
  44. Main_2.ClipsDescendants = true
  45. Main_2.Size = UDim2.new(0, 199, 0, 35)
  46. Main_2.AutoButtonColor = false
  47. Main_2.Font = Enum.Font.GothamBold
  48. Main_2.Text = "Kill"
  49. Main_2.TextColor3 = Color3.new(0, 0, 0)
  50. Main_2.TextSize = 14
  51.  
  52. Circle.Name = "Circle"
  53. Circle.Parent = Button
  54. Circle.AnchorPoint = Vector2.new(0.5, 0.5)
  55. Circle.BackgroundColor3 = Color3.new(1, 1, 1)
  56. Circle.BackgroundTransparency = 1
  57. Circle.BorderSizePixel = 0
  58. Circle.Position = UDim2.new(-0.107500002, 0, -5.6514034e-07, 0)
  59. Circle.Size = UDim2.new(0.744535923, 0, 2.42857146, 0)
  60. Circle.Visible = false
  61. Circle.Image = "rbxassetid://631168527"
  62. Circle.ImageColor3 = Color3.new(0.796079, 0.796079, 0.796079)
  63. Circle.ImageTransparency = 0.80000001192093
  64. Circle.ScaleType = Enum.ScaleType.Crop
  65.  
  66. TextLabel.Parent = Toppings
  67. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  68. TextLabel.BackgroundTransparency = 1
  69. TextLabel.Position = UDim2.new(-0.44563055, 0, -0.0606884025, 0)
  70. TextLabel.Size = UDim2.new(0, 433, 0, 50)
  71. TextLabel.Font = Enum.Font.GothamBold
  72. TextLabel.Text = "Fe Kill"
  73. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  74. TextLabel.TextSize = 24
  75.  
  76. TextBox.Parent = Toppings
  77. TextBox.BackgroundColor3 = Color3.new(0.666667, 0, 1)
  78. TextBox.BorderSizePixel = 0
  79. TextBox.Position = UDim2.new(0.0652173907, 0, 0.246376812, 0)
  80. TextBox.Size = UDim2.new(0, 200, 0, 50)
  81. TextBox.Font = Enum.Font.GothamBold
  82. TextBox.PlaceholderColor3 = Color3.new(0, 0, 0)
  83. TextBox.PlaceholderText = "Name..."
  84. TextBox.Text = ""
  85. TextBox.TextColor3 = Color3.new(0, 0, 0)
  86. TextBox.TextSize = 19
  87. -- Scripts:
  88. function SCRIPT_UUTJ75_FAKESCRIPT() -- Button.ButtonScript
  89. local script = Instance.new('LocalScript')
  90. script.Parent = Button
  91. local Frame = script.Parent
  92. local Button = Frame.Main
  93. local Circle = Frame.Circle
  94.  
  95. local Mouse = game.Players.LocalPlayer:GetMouse()
  96. local TweenService = game:GetService("TweenService")
  97.  
  98. local function ApplyEffects(hit)
  99. local Clone = Circle:Clone()
  100. Clone.Position = UDim2.new(0, hit.X, 0, hit.Y)
  101. Clone.Visible = true
  102. Clone.Parent = Frame
  103.  
  104. local GrowTweenInfo = TweenInfo.new(
  105. 0.6, -- Time
  106. Enum.EasingStyle.Linear, -- EasingStyle
  107. Enum.EasingDirection.Out, -- EasingDirection
  108. 0, -- RepeatCount (when less than zero the tween will loop indefinitely)
  109. false, -- Reverses (tween will reverse once reaching it's goal)
  110. 0 -- DelayTime
  111. )
  112. local FadeTweenInfo = TweenInfo.new(
  113. 0.6, -- Time
  114. Enum.EasingStyle.Linear, -- EasingStyle
  115. Enum.EasingDirection.Out, -- EasingDirection
  116. 0, -- RepeatCount (when less than zero the tween will loop indefinitely)
  117. false, -- Reverses (tween will reverse once reaching it's goal)
  118. 0.6/2 -- DelayTime
  119. )
  120.  
  121. local Max = math.max(Button.AbsoluteSize.X, Button.AbsoluteSize.Y)*3
  122. local GrowTween = TweenService:Create(Clone, GrowTweenInfo, {Size = UDim2.new(0, Max, 0, Max)})
  123. local FadeTween = TweenService:Create(Clone, FadeTweenInfo, {ImageTransparency = 1})
  124.  
  125. GrowTween:Play()
  126. FadeTween:Play()
  127. FadeTween.Completed:Connect(function()
  128. Clone:Destroy()
  129. GrowTween:Destroy()
  130. FadeTween:Destroy()
  131. end)
  132. end
  133.  
  134. Button.MouseButton1Click:Connect(function(property)
  135. local RelativePosition = Vector2.new(Mouse.X,Mouse.Y)-Button.AbsolutePosition
  136. ApplyEffects(RelativePosition)
  137. end)
  138.  
  139. local Min = math.min(Frame.AbsoluteSize.X, Frame.AbsoluteSize.Y)
  140. Circle.Size = UDim2.new(0, Min, 0, Min)
  141.  
  142. end
  143. coroutine.resume(coroutine.create(SCRIPT_UUTJ75_FAKESCRIPT))
  144.  
  145.  
  146.  
  147.  
  148. Main_2.MouseButton1Down:connect(function()
  149. local targetname = TextBox.Text
  150.  
  151. local LocalPlayer = game:GetService("Players").LocalPlayer
  152. local target = game:GetService("Players")[targetname]
  153. local torsoname = "Torso"
  154. if LocalPlayer.Character:FindFirstChild("Humanoid").RigType == Enum.HumanoidRigType.R15 then
  155. torsoname = "UpperTorso"
  156. end
  157. if target.Character ~= nil then
  158. local savepos = LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame
  159. LocalPlayer.Character:FindFirstChild(torsoname).Anchored = true
  160. local tool = Instance.new("Tool", LocalPlayer.Backpack)
  161. local hat = LocalPlayer.Character:FindFirstChildOfClass("Accessory")
  162. local hathandle = hat.Handle
  163. hathandle.Parent = tool
  164. hathandle.Massless = true
  165. tool.GripPos = Vector3.new(0, 9e99, 0)
  166. tool.Parent = LocalPlayer.Character
  167. repeat wait() until LocalPlayer.Character:FindFirstChildOfClass("Tool") ~= nil
  168. tool.Grip = CFrame.new(Vector3.new(0, 0, 0))
  169. LocalPlayer.Character:FindFirstChild(torsoname).Anchored = false
  170. repeat
  171. LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = target.Character:FindFirstChild("HumanoidRootPart").CFrame
  172. wait()
  173. until target.Character == nil or target.Character:FindFirstChild("Humanoid").Health <= 0 or LocalPlayer.Character == nil or LocalPlayer.Character:FindFirstChild("Humanoid").Health <= 0 or (target.Character:FindFirstChild("HumanoidRootPart").Velocity.magnitude - target.Character:FindFirstChild("Humanoid").WalkSpeed) > (target.Character:FindFirstChild("Humanoid").WalkSpeed + 20)
  174. LocalPlayer.Character:FindFirstChild("Humanoid"):UnequipTools()
  175. hathandle.Parent = hat
  176. hathandle.Massless = false
  177. tool:Destroy()
  178. LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = savepos
  179. end
  180. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement