[OPEN-SOURCE] FTWR BETA Plugin (EASY INVERSE KINEMATICS !)

Hello,

First of all, I would like to tell you what the plugin does.

With This Plugin You Can Create Inverse Kinematics Very Simple All You Have To Do Is Select The Origin Part Then Select The Target Part And Identify the Space Between And Finally Select The Parts You Want.

How To Use (Videos)

1- https://gyazo.com/7909527da8921a89fb625f5c52c93140
2- https://gyazo.com/c261248502fd07c6a9e8cae97b99cff5
3- https://gyazo.com/a649b0997650778fe88af6462f35e1a7

how does it look
note: I didn’t calculate the space between them well :smiley:

Link

Sources

Github -

Rbxmx File -

FTWR Plugin.rbxmx (60.7 KB)

Note: Plugin Is Beta Phase Don’t Forget to Tell the Noticeable Mistakes and Your Opinions!

Thanks!

16 Likes

new update coming soon …-.-.-.-.

4 Likes

It wont open up anything when I select the plugin in studio… is this a bug?

1 Like

I asked my friends, none of them had such a problem

doesnt work, wont oppen? is this a malicious plugin?

I had issues with the plugin as well but it’s because of the following logic:

Reference:
local Opened = false

Plugin Button Logic:
PluginButton1.Click:Connect(function()
if Opened then
MainWidget.Enabled = false
Opened = false – This should be set to true

  NormalWidget.CreateNewRigPage.Visible = false
  NormalWidget.Page1.Visible = true

else
MainWidget.Enabled = true
Opened = true – This should be set to false

  local PopUpScript = Instance.new("Script")
  PopUpScript:Destroy()

end
end)

I made this fixes on a version of the plugin I did not post, I am just providing you with my experience so you can look into the root of the problem.

Updated Reference:
local Closed = true

Updated Plugin Button Logic:
PluginButton1.Click:Connect(function()
if Closed then
MainWidget.Enabled = true
Closed = false

  NormalWidget.CreateNewRigPage.Visible = false
  NormalWidget.Page1.Visible = true

else
MainWidget.Enabled = false
Closed = true

  local PopUpScript = Instance.new("Script")
  PopUpScript:Destroy()

end
end)

I also think it would definitely improve the plugin if you created the ScreenGui inside the Plugin Folder but that’s not something I could go into detail of whether or not it would help/improve anything.

Awesome plugin, Thank you for your work on it!