local i = script.Parent local map = workspace.Map1.sa function onButtonClicked() local plr = game.Players.LocalPlayer local character = plr.Character character:MoveTo(map.Position) script.Parent.Parent.Parent:Remove() end i.MouseButton1Down:connect(onButtonClicked)
Because I don't know much about the player properties I need help, Thanks!
Put the tools you want to give the player inside of lighting inside of a model named "tools" And then the following...
local i = script.Parent local map = workspace.Map1.sa function onButtonClicked() local plr = game.Players.LocalPlayer local character = plr.Character character:MoveTo(map.Position) for _, v in pairs(game.Lighting.tools:GetChildren()) do v:Clone().Parent = plr.Backpack end script.Parent.Parent.Parent:Destroy() end i.MouseButton1Down:connect(onButtonClicked)
Also, if you're question is answered, please mark this answer as the correct answer.