I'm currently trying to clone a script that's inside of ServerStorage to a local player's GUI.
This is my script.
wait(2)
repeat wait() until game.Players.LocalPlayer.Character ~= nil
if game.Players.LocalPlayer.Name == "ShiveringBullet" then
script2 = game.ServerStorage.Abilities.Testing.Character.CharacterTest:clone()
wait()
script2.Parent = game.Players.LocalPlayer.PlayerGui
end
wait()
script:Destroy()
If anyone wants a visual representation, here ya go ; https://gyazo.com/5920f49446d292930ca2ce2023b0370a
|