www.roblox-scripter.com

Script – Boss fighting simulator

Thank you for using our website
Your script:
important!
IN LINE 11 OF THE SCRIPT, YOU NEED TO CHANGE the Ice Linked Sword to the name of the sword that you have.
To view the name of the sword, open the sword shop and check that the name is identical

				
					getgenv().autoPower = true
getgenv().sellPower = true

local RunService = game:GetService("RunService")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Player = game:GetService("Players").LocalPlayer

spawn(function()
while autoPower do
RunService.Heartbeat:Wait()
args = {[1] = Player.Character:FindFirstChild("Ice Linked Sword")} -- Change to name of sword, Ice Linked Sword, Fire Linked Sword, etc.
ReplicatedStorage.Remotes.Power:FireServer(unpack(args))
end
end)

spawn(function()
while sellPower do
RunService.Heartbeat:Wait()
ReplicatedStorage.Remotes.SellPower:InvokeServer() -- Sell Power
end
end)
				
			

How about trying out new scripts?