Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Players = game:GetService("Players")
- local LocalPlayer = Players.LocalPlayer
- -- Check if LocalPlayer exists and has DataFolder
- if LocalPlayer and LocalPlayer:FindFirstChild("DataFolder") then
- local DataFolder = LocalPlayer.DataFolder
- -- Check if DataFolder contains Information
- if DataFolder:FindFirstChild("Information") then
- local Information = DataFolder.Information
- -- Check if Information has Jail value
- if Information:FindFirstChild("Jail") then
- local JailValue = Information.Jail
- -- Function to check Jail value and perform actions
- local function checkJailValue()
- local numericJailValue = tonumber(JailValue.Value)
- if numericJailValue and numericJailValue >= 1 and numericJailValue <= 250 then
- getgenv().Enabled = false
- local plr = game.Players.LocalPlayer
- local Part = game:GetService("Workspace").Ignored.Shop["[Key] - $129"]
- plr.Character.HumanoidRootPart.CFrame = Part.Head.CFrame
- wait(0.5)
- fireclickdetector(Part.ClickDetector)
- wait(0.22)
- local Players = game:GetService("Players")
- local Cashiers = workspace.Cashiers
- local Player = Players.LocalPlayer
- local toolName = "[Key]"
- if Player.Backpack:FindFirstChild(toolName) then
- wait(0.1)
- pcall(function()
- Player.Backpack[toolName].Parent = Player.Character
- getgenv().Enabled = true
- end)
- end
- end
- end
- -- Initial check
- checkJailValue()
- -- Connect to the Changed event of JailValue
- JailValue.Changed:Connect(checkJailValue)
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement