Elemental Awakening Script | INSTANT CAST

Created by Iaying

Features:

  • INSTANT CAST

Script (NOTE: You must spawn first for this to work, also if you level up and get a new ability you have to re-run the script because I don’t want to add that):

local DataStuff = {
  MagicCircle = 'Gravity', -- pretty sure this is local fyi
  CanMove = true,
  MaxChargeEndlag = 0,
  MaxCharge = 0,
  CastTime = 0,
  EndLag = 0
}


local Players = game:GetService('Players')
local ReplicatedStorage = game:GetService('ReplicatedStorage')
local Player = Players.LocalPlayer
local SpellLibrary = require(ReplicatedStorage.SpellLibrary)

local function ManipulateTool(Tool)
  local Name = Tool.Name:gsub(' %(.+', '') -- gsub for cooldown
  local Info = SpellLibrary[Name]

  for Property, Value in pairs(DataStuff) do
      if rawget(Info, Property) then
          rawset(Info, Property, Value)
      end
  end
end

for _, Tool in pairs(Player.Character:GetChildren()) do
  if Tool:IsA('Tool') then
      ManipulateTool(Tool)
  end
end
for _, Tool in pairs(Player.Backpack:GetChildren()) do
  ManipulateTool(Tool) -- safe to assume something in the backpack is a tool
end

ENJOY!

Warning: DO NOT DOWNLOAD anything from this page, you’re only here to copy the script!

More Scripts!

TOP 10 TRENDING SCRIPTS