Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
2

I want to make some admin tabs, how do I fix this?

Asked by 9 years ago

I want to make some, but how do I weld the brick to me and "animate" the brick without moving my character? Here's what I have so far;

01wait(3)
02p = Instance.new("Part", game.Workspace)
03c = Instance.new("ClickDetector", p)
04local f = game.Workspace.FrstZ
05 
06p.TopSurface = "Smooth"
07p.BottomSurface = "Smooth"
08p.CanCollide = false
09p.Size = Vector3.new(0, 1, 0, 1)
10p.Material = "Neon"
11p.BrickColor = BrickColor.new(1019)
12 
13local w1 = Instance.new("Weld", p)
14w1.Part0 = f.Torso
15w1.Part1 = p
View all 33 lines...
0
Admin tabs are not usually welded to the player, they are CFramed relatively. This allows for much easier manipulation. Goulstem 8144 — 9y

1 answer

Log in to vote
1
Answered by 9 years ago

Welds typically aren't used for admin tablets. We generally CFrame the tablet to a location relative to the player. The script you provided uses welds, so I'll have to write some new code for you, and if you decide to use it, you'll have to scrap your weld script.

First, create a table that will contain the references to the tablets, and some variables for the rotation of the tablets around the player.

1Tablets = {} -- The tablet table.
2rot = .1 -- A point on a circle around the player.
3rot2 = 0.001 -- The speed at which the tablets will orbit the player.

Then, create a function that will create the tablet and add it to the table.

01function Output(Player,Color) --This takes 2 args. The player and tab color
02        if Color==nil then Color='New Yeller' end -- If color isn't supplied, set it to yellow.
03        local main = Instance.new("Part") -- Create the tab.
04        main.FormFactor='Custom'
05        main.CanCollide = false -- Tabs can clip through things.
06        main.Anchored = true -- Gravity and physics don't apply to it.
07        main.Name = 'Tab' -- Just naming it.
08        main.Parent = workspace -- Parent it to workspace.
09        main.BrickColor = BrickColor.new(Color) -- Set its color.
10        main.Size = Vector3.new(2,2,2) -- Set its size.
11        pcall(function() main.CFrame = Player.Character.Torso.CFrame end) -- CFrame it to the player.
12        table.insert(Tablets,{Tab=main,Player=Player}) -- Add it to the tabs table
13end

Now, create a function that will update the tablet's position. Uses fairly complicated math.

01function UpdateTablets()pcall(function() -- Takes no args, pcalled in case the player or its character is nil.
02        rot=rot+rot2 -- Rotate the position around the palyer
03        for _,Player in pairs(game:service'Players':GetPlayers()) do -- For each player
04            local PlayerTablets = {} -- Create a table for the tablets belonging to the player
05            for i,v in pairs(Tablets) do -- For each tablet
06                if v.Tab.Parent ~= nil and v.Player==Player then -- If the tab belongs to the player
07                    table.insert(PlayerTablets,v) -- Add the tablet to the list of tablets for that player
08                end
09            end
10            local Start = CFrame.new(0,0,0) -- Create a CFrame for the tab
11            for I = 1, #PlayerTablets do -- For each tab belonging to the player
12                radius = (#PlayerTablets*.6)+4 -- Set the radius of the circle around the player
13                Pos = Player.Character.Torso.CFrame -- Make a variable for the player's position
14                local Main = (I / #PlayerTablets - (0.3 / #PlayerTablets) + rot/(#PlayerTablets/7)) * math.pi * 2 -- Distance from player depending on the number of tablets around them so they don't clip into each other
15                local x = math.sin(Main) * radius -- Set the position on the X axis to the distance from the player
View all 24 lines...

Yes, that was complicated, but it's necessary. Now we need to call that function. Repeatedly. Really, really quickly. To do that, we can utilize the game's RunService.Stepped.

1game:service'RunService'.Stepped:connect(UpdateTablets) -- On every step, update the position of the tabs using the function we just made.

Now, to create a tab, we just do something like this:

1Output(game.Players.YourUsernameHere,"New Yeller") -- Create the tab for your player with the color "New Yeller".

Good luck with your admin tabs.

Ad

Answer this question