DcZg

Killstreak giver v2.5 (KS:R)

Oct 6th, 2022
6,107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.15 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Killstreakgiver = Instance.new("Frame")
  8. local Title = Instance.new("TextLabel")
  9. local Desc = Instance.new("TextLabel")
  10. local GetKill = Instance.new("TextButton")
  11. local Holding = Instance.new("BoolValue")
  12.  
  13. --Properties:
  14.  
  15. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  16. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  17.  
  18. Holding.Name = "Holding"
  19. Holding.Parent = ScreenGui
  20.  
  21. Killstreakgiver.Name = "Killstreakgiver"
  22. Killstreakgiver.Parent = ScreenGui
  23. Killstreakgiver.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  24. Killstreakgiver.BackgroundTransparency = 0.400
  25. Killstreakgiver.BorderColor3 = Color3.fromRGB(255, 255, 255)
  26. Killstreakgiver.BorderSizePixel = 4
  27. Killstreakgiver.Position = UDim2.new(0.393258452, 0, 0.292452842, 0)
  28. Killstreakgiver.Size = UDim2.new(0, 170, 0, 193)
  29.  
  30. Title.Name = "Title"
  31. Title.Parent = Killstreakgiver
  32. Title.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
  33. Title.BackgroundTransparency = 1.000
  34. Title.Position = UDim2.new(0, 0, -0.00370845082, 0)
  35. Title.Size = UDim2.new(0, 170, 0, 91)
  36. Title.Font = Enum.Font.LuckiestGuy
  37. Title.Text = "Killstreak Simulator: Remake: Streak Giver"
  38. Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  39. Title.TextSize = 17.000
  40. Title.TextWrapped = true
  41.  
  42. Desc.Name = "Desc"
  43. Desc.Parent = Killstreakgiver
  44. Desc.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
  45. Desc.BackgroundTransparency = 1.000
  46. Desc.Position = UDim2.new(0, 0, 0.464565843, 0)
  47. Desc.Size = UDim2.new(0, 170, 0, 57)
  48. Desc.Font = Enum.Font.LuckiestGuy
  49. Desc.Text = "Working since 6/10/2022, Original script is unknown."
  50. Desc.TextColor3 = Color3.fromRGB(255, 255, 255)
  51. Desc.TextSize = 17.000
  52. Desc.TextWrapped = true
  53.  
  54. GetKill.Name = "GetKill"
  55. GetKill.Parent = Killstreakgiver
  56. GetKill.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  57. GetKill.BorderColor3 = Color3.fromRGB(255, 170, 0)
  58. GetKill.BorderSizePixel = 0
  59. GetKill.Position = UDim2.new(0, 0, 0.816686571, 0)
  60. GetKill.Size = UDim2.new(0, 170, 0, 22)
  61. GetKill.Font = Enum.Font.LuckiestGuy
  62. GetKill.Text = "(+1) Get KIll/s"
  63. GetKill.TextColor3 = Color3.fromRGB(255, 255, 255)
  64. GetKill.TextScaled = true
  65. GetKill.TextSize = 14.000
  66. GetKill.TextWrapped = true
  67.  
  68. -- Scripts:
  69.  
  70. local function JFRVH_fake_script() -- GetKill.GetKill
  71. local script = Instance.new('LocalScript', GetKill)
  72.  
  73. script.Parent.MouseButton1Click:Connect(function()
  74. ex = 1 -- Number of killstreak :v
  75. for i = 1, ex do
  76. game:GetService("ReplicatedStorage").Events.AddKill:FireServer()
  77. end
  78. end)
  79. end
  80. coroutine.wrap(JFRVH_fake_script)()
  81. local function WKPJZDC_fake_script() -- ScreenGui.Drag
  82. local script = Instance.new('LocalScript', ScreenGui)
  83.  
  84. local player = game.Players.LocalPlayer
  85. local mouse = player:GetMouse()
  86.  
  87. mouse.Button1Down:Connect(function()
  88. script.Parent.Holding.Value = true
  89. end)
  90.  
  91. mouse.Button1Up:Connect(function()
  92. script.Parent.Holding.Value = false
  93. end)
  94.  
  95. mouse.Move:Connect(function()
  96. if script.Parent.Holding.Value == true then
  97. script.Parent.Killstreakgiver.Position = UDim2.new(0,mouse.X,0,mouse.Y)
  98. end
  99. end)
  100. end
  101. coroutine.wrap(WKPJZDC_fake_script)()
  102.  
Advertisement
Add Comment
Please, Sign In to add comment