Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Gui to Lua
- -- Version: 3.2
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local Killstreakgiver = Instance.new("Frame")
- local Title = Instance.new("TextLabel")
- local Desc = Instance.new("TextLabel")
- local GetKill = Instance.new("TextButton")
- local Holding = Instance.new("BoolValue")
- --Properties:
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Holding.Name = "Holding"
- Holding.Parent = ScreenGui
- Killstreakgiver.Name = "Killstreakgiver"
- Killstreakgiver.Parent = ScreenGui
- Killstreakgiver.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
- Killstreakgiver.BackgroundTransparency = 0.400
- Killstreakgiver.BorderColor3 = Color3.fromRGB(255, 255, 255)
- Killstreakgiver.BorderSizePixel = 4
- Killstreakgiver.Position = UDim2.new(0.393258452, 0, 0.292452842, 0)
- Killstreakgiver.Size = UDim2.new(0, 170, 0, 193)
- Title.Name = "Title"
- Title.Parent = Killstreakgiver
- Title.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
- Title.BackgroundTransparency = 1.000
- Title.Position = UDim2.new(0, 0, -0.00370845082, 0)
- Title.Size = UDim2.new(0, 170, 0, 91)
- Title.Font = Enum.Font.LuckiestGuy
- Title.Text = "Killstreak Simulator: Remake: Streak Giver"
- Title.TextColor3 = Color3.fromRGB(255, 255, 255)
- Title.TextSize = 17.000
- Title.TextWrapped = true
- Desc.Name = "Desc"
- Desc.Parent = Killstreakgiver
- Desc.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
- Desc.BackgroundTransparency = 1.000
- Desc.Position = UDim2.new(0, 0, 0.464565843, 0)
- Desc.Size = UDim2.new(0, 170, 0, 57)
- Desc.Font = Enum.Font.LuckiestGuy
- Desc.Text = "Working since 6/10/2022, Original script is unknown."
- Desc.TextColor3 = Color3.fromRGB(255, 255, 255)
- Desc.TextSize = 17.000
- Desc.TextWrapped = true
- GetKill.Name = "GetKill"
- GetKill.Parent = Killstreakgiver
- GetKill.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
- GetKill.BorderColor3 = Color3.fromRGB(255, 170, 0)
- GetKill.BorderSizePixel = 0
- GetKill.Position = UDim2.new(0, 0, 0.816686571, 0)
- GetKill.Size = UDim2.new(0, 170, 0, 22)
- GetKill.Font = Enum.Font.LuckiestGuy
- GetKill.Text = "(+1) Get KIll/s"
- GetKill.TextColor3 = Color3.fromRGB(255, 255, 255)
- GetKill.TextScaled = true
- GetKill.TextSize = 14.000
- GetKill.TextWrapped = true
- -- Scripts:
- local function JFRVH_fake_script() -- GetKill.GetKill
- local script = Instance.new('LocalScript', GetKill)
- script.Parent.MouseButton1Click:Connect(function()
- ex = 1 -- Number of killstreak :v
- for i = 1, ex do
- game:GetService("ReplicatedStorage").Events.AddKill:FireServer()
- end
- end)
- end
- coroutine.wrap(JFRVH_fake_script)()
- local function WKPJZDC_fake_script() -- ScreenGui.Drag
- local script = Instance.new('LocalScript', ScreenGui)
- local player = game.Players.LocalPlayer
- local mouse = player:GetMouse()
- mouse.Button1Down:Connect(function()
- script.Parent.Holding.Value = true
- end)
- mouse.Button1Up:Connect(function()
- script.Parent.Holding.Value = false
- end)
- mouse.Move:Connect(function()
- if script.Parent.Holding.Value == true then
- script.Parent.Killstreakgiver.Position = UDim2.new(0,mouse.X,0,mouse.Y)
- end
- end)
- end
- coroutine.wrap(WKPJZDC_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment