Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Inspect element first then click the Cursor and a square click the button you would want to change (Join Game, Chat, Unfriend) Then right click it and press Edit as HTML remove what is there and paste in this for Joining <button class="profile-join-game btn-primary-md ng-binding" ng-bind="'Action.JoinGame' | translate">Join Game</button> paste in this for Chatting <button class="btn-control-md ng-binding" ng-bind="'Action.Chat' | translate" ng-click="chat()">Chat</button> Paste this for UNFRIENDING <button class="btn-control-md ng-binding" id="unfriend-btn" ng-class="{'btn-unfollow': hover}" ng-bind="'Action.Unfriend' | translate" ng-click="removeFriend()" ng-mouseleave="hover =false" ng-mouseenter="hover = true" data-target-user-id="510909744" data-target-url="/api/friends/removefriend">Unfriend</button> Using these you can create Multiple Buttons on Roblox that do the same Action...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement