-- [[ Rscripts Risk Notice ]] -- This script is not verified by rscripts.net. Deal with caution. -- -- Stay safe: -- • Never log in on unofficial Roblox sites or lookalike domains. -- • Real Roblox links use roblox.com (check the .com ending). -- • Treat fake Roblox login / "claim reward" pages as phishing. -- [[ End Rscripts Risk Notice ]] ---*-* READ BEFORE USING *-*- --Doesn't work on phone only computer. --You must have this set up before execution: --A couch, You've set Ovenpos to the position where your house's outside oven is located, --use infinite yield's copyposition/copypos command to do this, only then execute otherwise it breaks. --Controls: T Punch, G Kick, V Speed Boost --the fire particles are completely FE along with the animations. --I'm new at scripting so it breaks sometimes but you can easily re execute it, local inputservice = Game:GetService("UserInputService") local plr = game.Players.LocalPlayer local char = plr.Character local animator = char.Humanoid.Animator char.Humanoid:EquipTool(plr.Backpack.Couch) -- lolio uh whatwih8it82 local tool = char:FindFirstChild("Couch") local cooldown = {} local ovenpos = Vector3.new(300, 37, 325) -- set thiz for every oven location, house must have it otherwise no aura bruh local function Reanimate() local Animate = game.Players.LocalPlayer.Character.Animate Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=507770239" Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=129369392265057" Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=96333326525292" Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=140389134090331" Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=95877284180448" Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=83488735206245" Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=0" end Reanimate() local function Punch() if tool then local oldpos = char.HumanoidRootPart.Position local anim = Instance.new("Animation") local attempts = 0 char.Humanoid:EquipTool(plr.Backpack.Couch) anim.AnimationId = "http://www.roblox.com/asset/?id=112588316171475" anim.Parent = char.Humanoid local playableanim = animator:LoadAnimation(anim) playableanim:Play() repeat task.wait(1) attempts += 1 print("NoOnehasEntered yet") until (tool:FindFirstChild("Seat1") and tool.Seat1:FindFirstChild("SeatWeld")) or (tool:FindFirstChild("Seat2") and tool.Seat2:FindFirstChild("SeatWeld")) or attempts == 3 char.HumanoidRootPart.Position = Vector3.new(-104, -465, -3588) attempts = 0 task.wait(0.2) char.Humanoid:UnequipTools() task.wait(0.3) char.HumanoidRootPart.Position = oldpos else char.Humanoid:EquipTool(plr.Backpack.Couch) print("Not holding tool, please hold a tool") end end local function Dropkick() if tool then local oldpos = char.HumanoidRootPart.Position local anim = Instance.new("Animation") local attempts = 0 char.Humanoid:EquipTool(plr.Backpack.Couch) anim.AnimationId = "http://www.roblox.com/asset/?id=78608424297146" anim.Parent = char.Humanoid local playableanim = animator:LoadAnimation(anim) playableanim:Play() repeat task.wait(1) attempts += 1 print("NoOnehasEntered yet") until (tool:FindFirstChild("Seat1") and tool.Seat1:FindFirstChild("SeatWeld")) or (tool:FindFirstChild("Seat2") and tool.Seat2:FindFirstChild("SeatWeld")) or attempts == 3 char.HumanoidRootPart.Position = Vector3.new(-274, -465, -3594) attempts = 0 task.wait(0.2) char.Humanoid:UnequipTools() task.wait(0.3) playableanim:Stop() char.HumanoidRootPart.Position = oldpos else char.Humanoid:EquipTool(plr.Backpack.Couch) print("Not holding tool, please hold a tool") end end local function Boost() local anim = Instance.new("Animation") anim.AnimationId = "http://www.roblox.com/asset/?id=140389134090331" anim.Parent = char.Humanoid local playableanim = animator:LoadAnimation(anim) playableanim:Play() char.Humanoid.WalkSpeed = 2 task.wait(4.3) char.Humanoid.WalkSpeed = 130 playableanim:Stop() end inputservice.InputBegan:Connect(function(obj, processed) local now = os.clock() if processed then return end if cooldown[plr] and now - cooldown[plr] < 2 then return end if obj.KeyCode == Enum.KeyCode.T then cooldown[plr] = now Punch() end if obj.KeyCode == Enum.KeyCode.G then cooldown[plr] = now Dropkick() end if obj.KeyCode == Enum.KeyCode.V then Boost() end end) while true do task.wait(16) local oldpos = char.HumanoidRootPart.Position char.HumanoidRootPart.Position = ovenpos task.wait(0.1) char.HumanoidRootPart.Position = oldpos print("Aura Replenished!") end