ADVERTISEMENTREMOVE ADS
Game icon

Auto Complete Meditation

PM [UPDATE 2]
2 years ago
Script preview thumbnail
Script Preview
Dx
Dxctor

Description

Press K in game and execute script.

made by Dxniz a.k.a Trxdent

Features:

  • Auto Meditation
ADVERTISEMENTREMOVE ADS
34 Lines • 827 Bytes
Raw
getgenv().settings = {
enabled = true,
currentkey = ""
}
function checkkey()
if game:GetService("Players").LocalPlayer.PlayerGui.Notification:FindFirstChild("WhichKey") then
settings.currentkey = game:GetService("Players").LocalPlayer.PlayerGui.Notification.WhichKey.Text
else
settings.currentkey = ""
end
end
while settings.enabled do wait(0.1)
checkkey()
if settings.currentkey == "W" then
keypress(0x57)
keyrelease(0x57)
elseif settings.currentkey == "A" then
keypress(0x41)
keyrelease(0x41)
elseif settings.currentkey == "S" then
keypress(0x53)
keyrelease(0x53)
elseif settings.currentkey == "D" then
keypress(0x44)
keyrelease(0x44)
elseif settings.currentkey == "" then
keypress(0x4B)
keyrelease(0x4B)
end
if not settings.enabled then return end
end
ADVERTISEMENTREMOVE ADS

Comments

0 comments
to add a comment
Loading comments
ADVERTISEMENTREMOVE ADS