local Players = game:GetService("Players")
local LocalPlayer = Players.LocalPlayer
game.StarterGui:SetCore("SendNotification", {
Title = "MADE BY MISINFORMER",
Text = "LOADED",
Duration = 5,
})
while true do
task.wait(0.1)
if LocalPlayer.Character then
LocalPlayer.Character:SetAttribute("Stamina", 100)
LocalPlayer.Character:SetAttribute("DisableJump", false)
local events = game:GetService("ReplicatedStorage"):WaitForChild("Events")
local staminaEvent = events:WaitForChild("Stamina")
if staminaEvent:IsA("BindableEvent") then
staminaEvent:Fire("add", 10)
end
end
end
Comments
No comments yet
Be the first to share your thoughts!