--BROUGHT TO YOU BY RobloxScripter.com!--
_G.Enabled = true
local player = game.Players.LocalPlayer
local mouse = player:GetMouse()
local worth = player.Backpack:WaitForChild("Needlegun").Worth
local ready = false
mouse.Button1Up:Connect(function()
if ready == false then
local clickDetector = mouse.Target.ClickDetector
worth.Changed:Connect(function(val)
if _G.Enabled == true then
fireclickdetector(clickDetector)
local ScrG = Instance.new("ScreenGui")
ScrG.Parent = game.CoreGui
local TextL = Instance.new("TextLabel")
TextL.BackgroundTransparency = 1
TextL.Position = UDim2.new(-0.0001, 0, 0.878, 0)
TextL.Size = UDim2.new(0.089, 0, 0.122, 0)
TextL.Text = "Ready!"
TextL.TextScaled = true
TextL.Parent = ScrG
wait(1)
ScrG:Destroy()
end
end)
ready = true
end
end)