johnbragah
New member
- Joined
- Dec 4, 2018
- Messages
- 2
- Reaction score
- 0
.
Last edited:
require "lib.sampfuncs"
function main()
if not isSampfuncsLoaded() then return end
if not isSampLoaded() then return end
AllowScriptToRun = false
pID = sampGetPlayerIdByCharHandle(playerPed)
pName = sampGetPlayerNickname(pID)
if text:find("SpinQuatts") or text:find("Robinson") then
AllowScriptToRun = true
end
while true do
wait(0)
if AllowScriptToRun then
-- Your script
end
end
end